您好,欢迎来到[编程问答]网站首页   源码下载   电子书籍   软件下载   专题
当前位置:首页 >> 编程问答 >> .NET >> webform在指定的div中添加动态添加label

webform在指定的div中添加动态添加label

来源:网络整理     时间:2016/6/27 4:23:12     关键词:

关于网友提出的“ webform在指定的div中添加动态添加label”问题疑问,本网通过在网上对“ webform在指定的div中添加动态添加label”有关的相关答案进行了整理,供用户进行参考,详细问题解答如下:

问题: webform在指定的div中添加动态添加label
描述:

RT


解决方案1:


$(function(){           
                $("#addLabel").click(function(){                 $("#divAddLabel").append("
<>
        解决方案2:

二、动态生成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;//           LiteralControl lc = new LiteralControl(strHtml.ToString());           lc.EnableViewState = true;
          span.Controls.Add(lc);           span.Controls.Add(lbl);
          span.Controls.Add(txt);           span.Controls.Add(hdf);//                   
          if (i % 2 == 0)
          {
                span.Controls.Add(new LiteralControl("
"));           }           else            {                  span.Controls.Add(new LiteralControl("
"));            }               }  }
动态生成的控件,当点击页面按钮时会刷新页面,所以,生成控件的方法不需要
/>
if(!IsPostBack) { }

以上介绍了“ webform在指定的div中添加动态添加label”的问题解答,希望对有需要的网友有所帮助。
本文网址链接:http://www.codes51.com/itwd/2099128.html

上一篇unity配置问题 ConfigurationManagerGetSection"unity"获取为NULL 下一篇关于数据库的连接关闭的一个问题~~

相关图片

相关文章