Hi,
I am trying to create a link on a page with the following URL
  http://localhost:8080/<context>/<module>/list.do

This JSP code specifies the <module>
  <html:link module="/upload" action="/upload">Upload</html:link>
produces this link
  http://localhost:8080/<context>/upload/upload.do

But, this Java code in a Tag
  out.print("<a href=\"upload.do\">Upload</a>");
produces this link 
  http://localhost:8080/<context>/<module>/upload.do


How can I specify the <module> in a user defined Tag?
Is it possible to use <html:link in a user defined Tag?


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

Reply via email to