Click here to Skip to main content
15,895,817 members
Please Sign up or sign in to vote.
0.00/5 (No votes)
See more:
How to pass values from page1 to another page.

Like I m patching values into a
and click in a
show the values in another page.
Posted
Comments
Orcun Iyigun 12-Nov-13 3:41am    
Can you tag it properly? ASP.Net, Windows forms? what is it?
Member 10395769 12-Nov-13 3:43am    
Which language are you using?

 
Share this answer
 
C#


In First page........
a


In Secound Page in PageLoad()
string values = Request.Querystring["ID"].ToString();
Respoce.write(values);
 
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