2
Answers

How to create Secure URL in asp.net

Photo of PankaJ D

PankaJ D

14y
5k
1
How to create Secure URl in asp.netWhile devoloping a project I have use many Querystring. But user can easily change the value of query string on address bar.I dont want to change the value of querystring on address bar.

Answers (2)

0
Photo of Abie Jose
NA 17 39.3k 13y
Using a Query string you can pass values of current page's control to another page


Response.Redirect("SecondPage.aspx?value1="& Textbox1.text &" &value2 = "& Textbox2.text &" ")


and in the secondpage.aspx you can retrieve this value with the following code

request.querystring("Value1")