码迷,mamicode.com
首页 > 其他好文 > 详细

使用ViewState[""]传递Hashtable的值

时间:2016-03-26 20:26:44      阅读:143      评论:0      收藏:0      [点我收藏+]

标签:

//首先定义
Hashtable myHach = new Hashtable();

//添加键值到Hashtable中
myHash.Add("ServiceType1", "值");

//例:
myHash.Add("Account1", this.txtAccount1.Text.Trim());

//把Hashtable放入ViewState[""]里
ViewState["condition"] = myHash;

//取得Hashtable的值
Hashtable ht = (Hashtable)ViewState["condition"];

//判断Hashtable中是否存在对应键
if(ht.ContainsKey("ServiceType1"))

//如果存在就把值赋给字符串
string ServiceType1 = ht["ServiceType1"].ToString();

使用ViewState[""]传递Hashtable的值

标签:

原文地址:http://www.cnblogs.com/azhou/p/5323783.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!