欧美bbbwbbbw肥妇,免费乱码人妻系列日韩,一级黄片

asp.net(C#) 動態(tài)添加非ASP的標準html控件(如添加Script標簽)

 更新時間:2009年07月09日 23:49:16   作者:  
在開發(fā)程序時,有時需要動態(tài)添加標簽,而有部分又不是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);

相關文章

最新評論