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
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Back
Top