i have a web page which contains different links to different jsp page. when anyone clicks on the link a server, side method should be called. how can i implement this by using jsf. can anybody gives me the solution
The commandLink JSF tag is probably what you want.
The secret of how to be miserable is to constantly expect things are going to happen the way that they are "supposed" to happen.
You can have faith, which carries the understanding that you may be disappointed. Then there's being a willfully-blind idiot, which virtually guarantees it.
the code is given below: <h:commandLink value="Go for list of examples." action="#{registrationBean.register}"> </h:commandLink> this is working perfectly.