QueryString: Doubt

Hi ,

a jsp page having form and in that form the

only component is submit button.The action

part of form has querystring to be passed to another page.

when i click the submit button the query string

is not passed to the other page.why?

can someone explain?

Thanx in advance for any help,

poornima

[351 byte] By [thirupathia] at [2007-10-2 12:15:06]
# 1
http://forum.java.sun.com/thread.jspa?threadID=708085&tstart=0 read what i have posted. i've use jstl to print the result and it worked
jgalacambraa at 2007-7-13 9:00:13 > top of Java-index,Enterprise & Remote Computing,Web Tier APIs...
# 2
If you used the code like this,<form method=post action="programname.jsp">,then the querystring will not be passed.Instead use,<form method=get action="programname.jsp">I think this might solve the problem. Regards,Venkatesh.P
venkateshpa at 2007-7-13 9:00:13 > top of Java-index,Enterprise & Remote Computing,Web Tier APIs...