Following is my URL that has ‘#’ character in it,problem is after ‘#’ all data it`s skipping,i checked the going URL in fiddler(Software).
http://someIPAddress/folder.asp?ID=1&ID1=2&ID2=3&name=name name1 # 1&skip=0
Can someone tell me why this is happening?What`s wrong using ‘#’ in URL?
#specifies the hash/anchor portion of the URL. It looks like you’re putting data in your URL without escaping it to encode special characters like#or%into%23or%25. Encode it usingencodeURIComponent.So something like this:
should become: