asp.net – 在后面的代码中注入标记

我需要找到一种注入< script>的全局方法.直接在< head>内标记到我的页面从后面的代码标记.我可以在global.asax中做些什么吗?如果没有,我所有的aspx页面都继承了一个实现System.Web.UI.Page的“BasePage”类.

基本上,我需要一种方法将jQuery推送到我的所有页面“之前”引用任何其他脚本(在HEAD中).

最佳答案

protected void Application_EndRequest(object sender, EventArgs e)
{
    if (result)
    {
        Page page = HttpContext.Current.CurrentHandler as Page;
        if (page is Page)
        {
            page.ClientScriptManager.RegisterClientScriptBlock(this.GetType(), "HeadScript",
            "<script>alert('error')</script>");
        }
    }
}

也许上面的东西适合你. Application_EndRequest在Global.asax中定义.

点赞