I know on client side (javascript) you can use windows.location.hash but could not find anyway to access from the server side.
|
|
We had a situation where we needed to persist the URL hash across ASP.Net post backs. As the browser does not send the hash to the server by default, the only way to do it is to use some Javascript:
We used jQuery to simplify the selecting of the field, etc... all in all it ends up being a few jQuery calls, one to save the value, and another to restore it. Before submit:
On page load:
IsHashValid() can check for "undefined" or other things you don't want to handle. Also, make sure you use $(document).ready() appropriately, of course. |
||||
|
|
|
RFC 2396 section 4.1:
(emphasis added) |
|||
|
|
|
Probably the only choice is to read it on the client side and transfer it manually to the server (GET/POST/AJAX). Regards Artur You may see also how to play with back button and browser history at Malcan |
|||
|
|
|
Just to rule out the possibility you aren't actually trying to see the fragment on a GET/POST and actually want to know how to access that part of a URI object you have within your server-side code, it is under Uri.Fragment (MSDN docs). |
|||||
|