1
Reply

How to pass two values to other page using Query String in ASP.NET?

Amit Sharma

Amit Sharma

11y
2.8k
0
Reply

    separate by &. Like - https://mywebsite.com/mypage.aspx?id=1&req=3¶m=5&verify=1and the next page you will get it seperately. like - string id = Request.QueryString["id"].ToString(); string req = Request.QueryString["req"].ToString();......... and so on.......