In my Asp.net (C#) application, I need to read three parameters from the query string (Item, Code and Location). Url is given below.
http://localhost/Reports?ITEM=A#1234&CODE=0013&LOCATION=LOCA#001
I am reading it like this.
            _code = Request["CODE"]; //value should be 0013
            _item = Request["ITEM"]; //value should be A#1234
            _location = Request["LOCATION"]; //value should be LOCA#001
But after # character, nothing retrievable to the variables.
Our database contains lots of data items with hash(#) character. Any idea how to read with # ?
 
     
    