In my page I have an ajax call for search and filtering and all the filter selection I am appending in URL as a # param (as appending in form of query string it will refresh the page).
By my problem is that I am not able to access this (# values) in my code behind (using c#).
I tried to store the # value in hidden field on window.load function of javascript, but I will not get this value in page load method of asp.net.
Can anybody suggest how to access this value on page load?