Reputation: 7684
Is there a way to append an anchor (test.aspx#23432) in the codebehind to the end of my current location in my address bar without using Response.Redirect()?
Upvotes: 2
Views: 1111
Reputation: 8884
Once you are in your code behind, you are already in a repost, so the short answer is no. You can change your button/link to a regular html control that appends the anchor without doing a postback
<a href="#23432">Click Here</a>
Upvotes: 2