I need to get all parameters from the request including what comes after \"#\".
example:
request: http://myserver/m#q=abc
I need my server to get all parameters after \"#\"
Have in mind that anchors are a client-side concept so they shouldn't be used in the server side. Clients don't send the anchor data to the server, so you can't do this. Better use get parameters.