At the moment I'm creating an online exam, and I need to pass a tiny bit of information from one page to another via the URL.
At the moment i current have this:
Response.Redirect("Home.aspx?uName=" + txtUserName.Text);
Which goes to the home page with the users UserName in it which is then picked up and information gets loaded. But what I want to do is some how encrypt that UserName so the user can't play around with it nor can they guess what it is. Is there a way of doing this?