How do i append query string from managed bean to url? JSF
        Posted  
        
            by Nitesh Panchal
        on Stack Overflow
        
        See other posts from Stack Overflow
        
            or by Nitesh Panchal
        
        
        
        Published on 2010-03-21T16:36:04Z
        Indexed on 
            2010/03/21
            16:41 UTC
        
        
        Read the original article
        Hit count: 348
        
jsf
Hello, Can this method work?
public String sayHello(){
    return "Hello.jsp?name=" + "laala";
}
I am unable to access, query string using the above method. I tried ${param.name} as well as request.getParameter("name"). They both return null. Please help!
© Stack Overflow or respective owner