hey buddies
i don't how do you respond with this newbie's JSP question. as i don't have
anyother sources to get it clarified, i'm posting it here...
actually i have two jsps first.jsp and second.jsp and a html page which
posts the data to the first.jsp from which i'm forwardin it to the
second.jsp. in second.jsp i'm retrieving all the parameters that has come
from html and first.jsp. that's all about... but i got struck somewhere
...!
:(
here is the snipped of the files...
test.html::
<html>
...
<form ...action=first.jsp>
<input type="text" name="name">
<input type="submit">
</form>
</html>
first.jsp::
this does nothing but adding an extra parameter to the requst and
forwarding
it to the second.jsp as follow ...
<jsp:forward page=second.jsp>
<jsp:param name="extra" value="extra value"/>
</jsp:forward>
second.jsp::
<%
Enumeration param=request.getParameterNames();
while(param.hasMoreElements()){
String param_name=(String)param.nextElement();
out.println(param_name+": "+request.getParameter(param_name));
}
%>
now coming to my problem, as i submit the html form, the browser is just
showing a blank
page ... :(
any help will be highly appreciated and ofcourse thanked buddies....
thanx in advance
inconvenience is deeply regretted, if applicable!
kasu
___________________________________________________________________________
To unsubscribe, send email to [EMAIL PROTECTED] and include in the body
of the message "signoff SERVLET-INTEREST".
Archives: http://archives.java.sun.com/archives/servlet-interest.html
Resources: http://java.sun.com/products/servlet/external-resources.html
LISTSERV Help: http://www.lsoft.com/manuals/user/user.html