m how to pass the value from one page to another page in asp.net
-
Hi all, How can I pass the value from one page to another? I pass the value using querystring but i don't want to use querystring because value is seen in the URL so please help me........... Chetan Visodiya
-
Hi all, How can I pass the value from one page to another? I pass the value using querystring but i don't want to use querystring because value is seen in the URL so please help me........... Chetan Visodiya
You can put that value in the hidden field and Request that value in the page where you are posting your data. Sushant Mathur Bangalore, INDIA. http://n.domaindlx.com/fun2ssh/HOME.htm
-
Hi all, How can I pass the value from one page to another? I pass the value using querystring but i don't want to use querystring because value is seen in the URL so please help me........... Chetan Visodiya
U can use Sessions Or Request.Form["CtrlId"].ToString(); "Aim to go where U have never been B4 and Strive to achieve it" http://groups.yahoo.com/subscribe/dotnetforfreshers http://himabinduvejella.blogspot.com
-
U can use Sessions Or Request.Form["CtrlId"].ToString(); "Aim to go where U have never been B4 and Strive to achieve it" http://groups.yahoo.com/subscribe/dotnetforfreshers http://himabinduvejella.blogspot.com
thanks for the answer. but please can you give me the some more code in details. Thanks chetan
-
thanks for the answer. but please can you give me the some more code in details. Thanks chetan
Session["UserName"]=strUser; Accessing in other Form Item=Session["UserName"].ToString(); "Aim to go where U have never been B4 and Strive to achieve it" http://groups.yahoo.com/subscribe/dotnetforfreshers http://himabinduvejella.blogspot.com