I have multiple segments on a web page, identified with targets, like this:
<div id="target1" class="section">
<h4><a href="#target1">Buildings by Name</a></h4>
<div>
// button to call server side function
</div>
</div>
So when user clicks "Buildings by Name", the URI changes to http://www.mydomain.com/page.aspx#target1
i need to call a server side function, which will do some processing. And when i return from the server side script, i want to reload the page with the same targeted URI http://www.mydomain.com/page.aspx#target1 . Right now, when I return from the postback, the URI is just /page.aspx
is there a way to do this?
thanks!