Click here to Skip to main content
15,895,877 members
Please Sign up or sign in to vote.
0.00/5 (No votes)
See more:
How to pass multiple parameter as query String Parameter in Asp.net
I have grid like
XML
......
<itemtemplate>
<hyperlink>

</hyperlink>
</itemtemplate>
......

here i am able to pass one parameter but how to pass multiple parameter to move next page
Posted
Updated 4-Nov-14 16:08pm
v2

Hi
You can pass multiple values as


Response.Redirect("Default.aspx?Name1="+value1+"&Name2="+value2);


and retrieve values at Default.aspx page like


C#
String value1 = Request.QueryString["Name1"];
String value2 = Request.QueryString["Name2"];
 
Share this answer
 
v2

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900