views:

165

answers:

1

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()?

+1  A: 

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>
Jason Berkan