实用技巧

关注公众号 jb51net

关闭
首页 > 网络编程 > ASP.NET > 实用技巧 > asp.net 动态添加 html控件

asp.net(C#) 动态添加非ASP的标准html控件(如添加Script标签)

作者:

在开发程序时,有时需要动态添加标签,而有部分又不是ASP控件,偶然找到这段代码,特收藏。
复制代码 代码如下:

HtmlGenericControl Include2 = new HtmlGenericControl("script");
Include2.Attributes.Add("type", "text/javascript");
Include2.InnerHtml = "alert('JavaScript in Page Header');";
this.Page.Header.Controls.Add(Include2);

或使用:
复制代码 代码如下:

Literal li = new Literal();
li.Text = "<script...</script>";
this.Page.Header.Controls.Add(li);
您可能感兴趣的文章:
阅读全文