You need to sign in to do that
Don't have an account?

ApexPages Message
Hi,
I' using page messages to display message on vf page.
I want to display message as show below...
How can i achieve that
Message:'You Selected'+' '+a.name
ApexPages.Message msg=new ApexPages.Message(ApexPages.Severity.Info,'You Selected'+' '+a.name );
ApexPages.addMessage(msg);
The apex is exactly the same.
You need a VF page with tag <apex:Message> or <apex:Messages> tag to display it in the visual force page.