passing values to another window
-
hi, i am having an application with two web pages.one page contains button ,on button click iam calling java script to open 2nd window .window.open("2nd.aspx").i want to pass values to 2nd window .how to pass values.
kamalnath
-
hi, i am having an application with two web pages.one page contains button ,on button click iam calling java script to open 2nd window .window.open("2nd.aspx").i want to pass values to 2nd window .how to pass values.
kamalnath
you can use 1. query string with the new window url. 2. session variables I prefer first one.
-
you can use 1. query string with the new window url. 2. session variables I prefer first one.
hi, ok,then how to get that query string values in 2nd page
kamalnath
-
hi, ok,then how to get that query string values in 2nd page
kamalnath
-
through request object. string str = Request.QueryString["var_Name"].ToString();
Best Regards, Apurva Kaushal
ok , i got it.thank u.
kamalnath