Re: Posting to the same JSP
Posted By:
Bozidar_Dangubic
Posted On:
Sunday, November 18, 2001 07:18 AM
adel,
consider putting "URL parameters" is the form as hidden fields. it really should be done that way. I am guessing you are putting URL parameters in the form action tag, but it is much better design if you put them as hidden fields in the form itself. posting to the same JSP is no problem at all - just put the url of the jsp in the form action tag.
Re: Posting to the same JSP
Posted By:
subhadeep_de
Posted On:
Sunday, November 18, 2001 06:11 AM
u can post the url parameters using
URL ? param1=" ";param2=" ";...
and the form parametrs as usual
bye.Hope this helps.
Subhadeep.