栏目分类
热门排行
最近更新
关于网友提出的“ webform在指定的div中添加动态添加label”问题疑问,本网通过在网上对“ webform在指定的div中添加动态添加label”有关的相关答案进行了整理,供用户进行参考,详细问题解答如下:
RT
$(function(){ $("#addLabel").click(function(){ $("#divAddLabel").append("添加的label"); }); });
<>
二、动态生成Asp.Net服务器控件,并取其值
private void LoadProperty(int cateId) { HtmlGenericControl span = new HtmlGenericControl(); for (int i = 0; i < ds.Tables[0].Rows.Count; i++) { StringBuilder strHtml = new StringBuilder(); if (i % 2 == 0) { strHtml.Append(""); strHtml.Append(""); } else { strHtml.Append(""); } TextBox txt = new TextBox(); Label lbl = new Label(); HiddenField hdf = new HiddenField();// lbl.ID = "lblProp" + i.ToString(); lbl.Text = ds.Tables[0].Rows[i]["PropName"].ToString() + ":"; txt.ID = "txtProp" + i.ToString(); hdf.ID = "hdfProp" + i.ToString();// lbl.EnableViewState = true; txt.EnableViewState = true; hdf.EnableViewState = true;//