本文介绍了如何在网页重定向期间保存值的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
在webform_1上,我有一些DDL和一个网格.从这个webform_1,在某些情况下,我将用户重定向到另一个webform_2.
现在,当我想从webform_2返回到webform_1时,我希望所有控件的值与重定向之前的值完全相同.
感谢任何解决方案.
On webform_1, i have some DDL and a Grid. From this webform_1,on some event, i am redirecting user to another webform_2.
Now when i want to return back from webform_2 to webform_1, i want all controls values exactly same what it was having before redirect.
Any solution is appreciated.
推荐答案
//Set value
Session["MyValue"] = value;
//Get value
value = Session["MyValue"];
You can pass it to your page as Query String[^] as well.
这篇关于如何在网页重定向期间保存值的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!