How to get Url Hash (#) from server side

111,983

Solution 1

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:

  1. When the form submits, grab the hash (window.location.hash) and store it in a server-side hidden input field Put this in a DIV with an id of "urlhash" so we can find it easily later.

  2. On the server you can use this value if you need to do something with it. You can even change it if you need to.

  3. On page load on the client, check the value of this this hidden field. You will want to find it by the DIV it is contained in as the auto-generated ID won't be known. Yes, you could do some trickery here with .ClientID but we found it simpler to just use the wrapper DIV as it allows all this Javascript to live in an external file and be used in a generic fashion.

  4. If the hidden input field has a valid value, set that as the URL hash (window.location.hash again) and/or perform other actions.

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:

$("form").submit(function() {
  $("input", "#urlhash").val(window.location.hash);
});

On page load:

var hashVal = $("input", "#urlhash").val();
if (IsHashValid(hashVal)) {
  window.location.hash = hashVal;
}

IsHashValid() can check for "undefined" or other things you don't want to handle.

Also, make sure you use $(document).ready() appropriately, of course.

Solution 2

[RFC 2396][1] section 4.1:

When a URI reference is used to perform a retrieval action on the identified resource, the optional fragment identifier, separated from the URI by a crosshatch ("#") character, consists of additional reference information to be interpreted by the user agent after the retrieval action has been successfully completed. As such, it is not part of a URI, but is often used in conjunction with a URI.

(emphasis added) [1]: https://www.rfc-editor.org/rfc/rfc2396#section-4

Solution 3

That's because the browser doesn't transmit that part to the server, sorry.

Solution 4

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).

Share:
111,983
Ricky Supit
Author by

Ricky Supit

Updated on June 06, 2021

Comments

  • Ricky Supit
    Ricky Supit about 3 years

    I know on client side (javascript) you can use windows.location.hash but could not find anyway to access from the server side. I'm using asp.net.

  • zcrar70
    zcrar70 about 13 years
    IE8, Chrome and Firefox all won't send the hash to the server; so, the Uri.Fragment is always an empty string if you examine Request.Url.Fragment server-side (as per the replies above.)
  • Warlock
    Warlock about 11 years
    Great solution, but what's about GET request?
  • KrishPrabakar
    KrishPrabakar almost 11 years
    @Chris - But how form-submit event gets called when you simply paste the URL in a different browser (because it's just a GET request)?
  • KMX
    KMX over 9 years
    @Warlock, regardless of get/post it will work since you are storing the hash in a hidden field.
  • bodrin
    bodrin over 9 years
    I'm surprised. I have read a lot about SPA and didn't known that. So the browser sends so much sensitive information but not the hash?? I think it should into the future .. at least as a separate HTTP header. This is related: onebigfluke.com/2015/01/…