I have a query string and gonna show it's value in both URL and interface.
EX:
http://test.com/my.asp?customername=...stomeraddress=... ---URL
CustomerName:abcd | CustomerAddress:... ---Interface.
Now, my problem is that if a customer's name is
bd&ef, I couldn't let it show in the URL, since querystring gonna regard it as 2 values, and the URL won't show up. But If I omit "&" with replace() method, the Interface won't show customername as
bd&ef, but
bdef, Base on this kind situation, how can I make both side satisfied?
Thank you a lot for your suggestion.