Possible Duplicate:
How to get Url Hash (#) from server side
c# get complete URL with “#”
If I call the page http://www.mywebsite.it?param=1 with
Request.Url
I get it all. But on http://www.mywebsite.it?param=1#1234
I can’t get the whole address. #1234 is ignored. How can I get it?
You can’t get the portion that starts with a
#since this isn’t normally transmitted to the server.It is only handled client side.
As such, you may be able to use javascript to extract it and transmit to the server (XHR, hidden field or any other technique).