I'm using asp.net with c# in backcode. On my first page, I have a hyperlink with NavigateUrl ="Order.aspx?productId = " + ProductID . I want to transfer ProductID in Order.aspx file. So, how to get it in target file :Order.aspx.
I used a lable to display in Order.aspx file
string productId = Request.QueryString["productId"];
lblTest.Test = productId
But lblTest didn't display anything
Thanks.