So you want to catch parameters eh ? Ok , take this for a example:

http://localhost/webapps/index.jsp?param1=Rubbish&param2=More+Rubbish

In index.jsp if you use the following command in a scriplet ,
String temp = request.getParameter("param1") ;


You will get the string value of the parameter param1, null if no such parameter exists. You don't need to take the entire string and parse it.
You can repeat this for param2.


You could also get a enumeration of the paramaterNames and attribute values as well. Hope it helps.



---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



Reply via email to