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

2004-01-19 Thread Hume, John - NA US HQ Delray
Mufaddal, You can set location.hash='myNamedTarget' once the page has finished loading into the browser. See attached. -john. -Original Message- From: Mufaddal Khumri [mailto:[EMAIL PROTECTED] Sent: Friday, January 16, 2004 6:07 PM To: Tomcat Users List Subject: Re: Ne

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 redirecting?

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 need

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 ha

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

2004-01-15 Thread Mufaddal Khumri
Could you elaborate? you presented just a normal 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: Add Client IPs [EMAIL PROTECTED] 01/15/04

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

2004-01-15 Thread Howard Watson
I have some links that pass parameters like this: Add Client IPs >>> [EMAIL PROTECTED] 01/15/04 03:45PM >>> hi, I have a page called First.jsp. I have a on it. When i submit a form to a servlet, the servlet needs to forward me to First.jsp#tag. Problem is i get the following message when i tr