In my web page I have an HTML anchor tag that acts as a bookmark:
<A name="bookmark"></A>
When a command button on the page is clicked, I do a postback. If certain conditions exist, then I want to jump to the above bookmark. I use a line of code that looks like this:
Server.Transfer("#bookmark
")
This generates the following error on the Server.Transfer line:
"Error executing child request for #bookmark."
How do I make my code jump to this bookmark?
Start Free Trial