HtmlAnchor

  • Thread starter Thread starter Roger
  • Start date Start date
R

Roger

Hi:
I'm trying to submit a form and go to an anchor point after processing form
on the same page. Is this possible? How?
 
You would have to response.redirect to the page and the named anchor such
as:

Response.Redirect(Request.ServerVariables["SCRIPT_NAME"].ToString() +
"#Myanchor");

Otherwise there's not much else you can do to get the browser to go the a
named anchor location.

Hope this helps
Mark Fitzpatrick
Microsoft MVP - FrontPage
 
Back
Top