In my application i have a url in the format
www.abc.com/mypage#yourId=ASDF2345
.
How can i read back the value of yourId parameter from the Request object in asp.net , c# ?
If it would have been
www.abc.com/mypage?yourId=ASDF2345
,
then i would have got this from the QueryString collection in the Request object. But there is a #
before the yourId parameter and its not being provided by the QueryString collection.