C CRISTINA MENA Apr 20, 2005 #1 hi to all how can you call a aspx page and send parameters with a class c#???
L Lucas Tam Apr 20, 2005 #2 hi to all how can you call a aspx page and send parameters with a class c#??? Click to expand... How are you calling the ASPX page?
hi to all how can you call a aspx page and send parameters with a class c#??? Click to expand... How are you calling the ASPX page?
B Brock Allen Apr 21, 2005 #3 You can send the user's browser to another page sending parameters via a query string: <a href="OtherPage.aspx?SomeParam=SomeValue">Other Page</a> In OtherPage.aspx: Page_Load() { string val = QueryString["SomeParam"]; // val should be "SomeValue" } -Brock DevelopMentor http://staff.develop.com/ballen
You can send the user's browser to another page sending parameters via a query string: <a href="OtherPage.aspx?SomeParam=SomeValue">Other Page</a> In OtherPage.aspx: Page_Load() { string val = QueryString["SomeParam"]; // val should be "SomeValue" } -Brock DevelopMentor http://staff.develop.com/ballen