I want to link to a page and pass a username through the queryString but I want to send the username in ASCII rather than just normal text. So when the user clicks on my link, they'll see in the address bar something like
..mypage.asp?username=%43%48%52%49%53
rather than
..mypage.asp?username=CHRIS
This is kind of for security reasons, but not really. We just don't want to display the name in the URL. I have to link to a page on a Linux box which can parse out the username from ASCII. I am just having trouble converting to ASCII. Is there any easy way to do this?
Thanks
..mypage.asp?username=%43%48%52%49%53
rather than
..mypage.asp?username=CHRIS
This is kind of for security reasons, but not really. We just don't want to display the name in the URL. I have to link to a page on a Linux box which can parse out the username from ASCII. I am just having trouble converting to ASCII. Is there any easy way to do this?
Thanks