This content has been marked as final. 
    
Show                 2 replies
    
- 
        1. Re: Invoke same pagekragoth Mar 3, 2009 5:06 AM (in response to jnl1)I'm not quite sure what you are asking here. Maybe try word your question differently or give an example. 
- 
        2. Re: Invoke same pageniox.nikospara.yahoo.com Mar 3, 2009 9:24 AM (in response to jnl1)If you are using JSF:Have you tried returning null from your action method? This is standard JSF practice. I.e.: /** Search for "Beans" */ @Name("searcher") pubic class Searcher { public String search(Criteria c) { ...do search, get results... return null; } ... }In facelet: <h:commandLink value="Search" action="#{searcher.search}" />
 
     
    