Go homepage(回首页)
Upload pictures (上传图片)
Write articles (发文字帖)

The author:(作者)归海一刀
published in(发表于) 2014/1/30 1:23:29
asp.net绑定label的示例代码_[Asp.Net教程]

asp.net绑定label的示例代码_[Asp.Net教程]
前台页面:
’>


’>


’>


’>

后台代码:
IDictionary Dic = new Dictionary();
protected void Page_Load(object sender, EventArgs e)
{
if (!Page.IsPostBack)
{
BindData();
}
}
public string GetName(object index)
{
//如果运算符的左边是非空的就返回左边,否则是右边!
index = index ?? " ";
int key;
int.TryParse(index.ToString(), out key);

return Dic[key];
}
public void BindData()
{
Dic.Add(1, "胡果");
Dic.Add(2, "胡磊");
Dic.Add(3, "俊文");
Dic.Add(4, "刘皮");
DataBind();
}


If you have any requirements, please contact webmaster。(如果有什么要求,请联系站长)





QQ:154298438
QQ:417480759