I know on client side (javascript) you can use windows.location.hash but could not find anyway to access from the server side.
|
|
|||||
|
|
|
That's because the browser doesn't transmit that part to the server, sorry. |
||
|
|
|
|
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). |
||
|
|
|
|
We had a situation where we needed to persist the URL hash across ASP.Net post backs. The way to do it is to use some jQuery/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. |
||
|
|
