Send control values between forms in asp.net

I need to send values of controls between forms in asp.netI tried to send information with following URL:DisplayNews.aspx?cmd=HyperLink1.valueAnd tried to recieve information with following code:\[code\]string s = Request.QueryString["cmd"];\[/code\]But in output I see "HyperLink1.value" instead of real value.Thank you for help.
 
Back
Top