ASP.net:将Javascript标记添加到页眉。

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了ASP.net:将Javascript标记添加到页眉。相关的知识,希望对你有一定的参考价值。

Call with the path of any javascript you want to load into the HEAD of the ASPX page.
  1. /// <summary>
  2. /// Registers the client script include.
  3. /// </summary>
  4. /// <param name="src">The file name.</param>
  5. void RegisterClientScriptInclude(string src)
  6. {
  7. System.Web.UI.htmlControls.HtmlGenericControl si = new System.Web.UI.HtmlControls.HtmlGenericControl();
  8. si.TagName = "script";
  9. si.Attributes.Add("type", "text/javascript");
  10. si.Attributes.Add("src", src);
  11. this.Page.Header.Controls.Add(si);
  12. this.Page.Header.Controls.Add(new LiteralControl(" "));
  13. }

以上是关于ASP.net:将Javascript标记添加到页眉。的主要内容,如果未能解决你的问题,请参考以下文章

ASP.NET Web Pages - 添加 Razor 代码

将目录添加到 ASP.NET 卷影副本

允许用户使用 Google Map 和 asp.net 设置其位置

ASP.NET 的框架 javascript 不允许我呈现原始 HTML IFRAME

ASP.NET:将外部变量传递到 <asp:sqldatasource> 标记 ASP.NET 2.0

将 javascript 代码段附加到 body 标记的末尾