Mufaddal Khumri wrote:
Hi ,
I tried using
request.setAttribute("name", "newName");
try
{
String path = "/SomeJSP.jsp"
getServletConfig().getServletContext().getRequestDispatcher(path).forwar d(request, response);
}
catch(Exception ex)
{
ex.printStackTrace();
}
When i do a request.getParameter in my JSP page .. it returns a blank sting "" . This is the reason I thought maybe request.setAttribute is not the method I should be using. Do you have any clues as to why this might be happening ?
What happens if you try request.getAttribute() ?
Erik
--------------------------------------------------------------------- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]
