RE: Need an Idea - appending #tag after someurl.jsp ?

2004-01-19 Thread Hume, John - NA US HQ Delray
- appending #tag after someurl.jsp ? I set a request attribute before forwarding the request to JSP. Does anybody have some javascript that would allow me to jump to a an anchor within that page ? On Jan 15, 2004, at 3:55 PM, Hume, John - NA US HQ Delray wrote: Is the servlet doing

RE: Need an Idea - appending #tag after someurl.jsp ?

2004-01-16 Thread Hume, John - NA US HQ Delray
Is the servlet doing a RequestDispatcher.forward or HTTP redirecting? It seems a response.sendRedirect (HTTP redirect) would work, assuming your JSP doesn't need the data from the form POST request. If it DOES need to share the request with the servlet, then I believe the HTML form action will

Re: Need an Idea - appending #tag after someurl.jsp ?

2004-01-16 Thread Mufaddal Khumri
The servlet is doing a forward to the JSP. How is it possible then? On Jan 15, 2004, at 3:55 PM, Hume, John - NA US HQ Delray wrote: Is the servlet doing a RequestDispatcher.forward or HTTP redirecting? It seems a response.sendRedirect (HTTP redirect) would work, assuming your JSP doesn't

Re: Need an Idea - appending #tag after someurl.jsp ?

2004-01-16 Thread Mufaddal Khumri
I set a request attribute before forwarding the request to JSP. Does anybody have some javascript that would allow me to jump to a an anchor within that page ? On Jan 15, 2004, at 3:55 PM, Hume, John - NA US HQ Delray wrote: Is the servlet doing a RequestDispatcher.forward or HTTP

Re: Need an Idea - appending #tag after someurl.jsp ?

2004-01-15 Thread Howard Watson
I have some links that pass parameters like this: a href=IPclientSelect.jsp?task=AddAdd Client IPs/a [EMAIL PROTECTED] 01/15/04 03:45PM hi, I have a page called First.jsp. I have a a name='tag' on it. When i submit a form to a servlet, the servlet needs to forward me to First.jsp#tag.

Re: Need an Idea - appending #tag after someurl.jsp ?

2004-01-15 Thread Mufaddal Khumri
Could you elaborate? you presented just a normal a href .. tag. I am trying to jump to an anchor within First.jsp when I am forwarded from a servlet. Any ideas? On Jan 15, 2004, at 4:47 PM, Howard Watson wrote: I have some links that pass parameters like this: a