I have taken five dropdown lists in master page and one Imagebutton. On click of Image button values of dropdown list are passed to server side for processing and result will be displayed on another content page.
问问题
36 次
1 回答
0
使用可以使用Session
如下所示的变量:
首先使用值启动 Session 变量
Session["variablename"] = value //can be int, string, datatable, array etc
在其他页面使用
getvalue = Session["variablename"].ToString() //if the value is string type (or convert it accordingly)
如果Session
变量的使用结束,则转储它。
Session.Remove("variablename");
于 2013-10-31T12:51:40.527 回答