| Author |
http GET links
|
Dushy Inguva
Ranch Hand
Joined: Jun 24, 2003
Posts: 264
|
|
For http GET links, a JSP can expect 2 params. While composing this link, an ugly syntax has to be followed. Example: UserSubmit.jsp?UserID=<dynamicallyGenerated>&UserAge=<SomeMoreDynamicStuff> This kind of syntax is problematic if a '&' is missed or if the dynamic stuff has spaces. The solution we are thinking of is a helper class URLGetLink link = new URLGetLink("UserSubmit.jsp"); link.addParam("UserID",<dynamicallyGeneratedStuff> ; link.print(stream); And use this from a custom tag, so that there is no java in the JSP pages. Is there a simpler way of doing this ?
|
SJCP, SCBCD, SJCD, SCDJWS, SCEA (Part I)
|
 |
Marc Peabody
pie sneak
Sheriff
Joined: Feb 05, 2003
Posts: 4725
|
|
|
I'd recommend saving those two values to session scope if you need them for each request. It will make things prettier for the user and have higher security for you.
|
A good workman is known by his tools.
|
 |
 |
|
|
subject: http GET links
|
|
|