• 用户控件中引用JS或者CSS文件


    // 引入js文件
                HtmlGenericControl scriptControl = new HtmlGenericControl("script");
                scriptControl.Attributes.Add("type", "text/javascript");
                scriptControl.Attributes.Add("language", "JavaScript");
                scriptControl.Attributes.Add("src", "../js/menu.js");
                Page.Header.Controls.Add(scriptControl);
    // 引入样式表
                 Literal cssControl = new Literal();
                cssControl.Text = "<link href=\"../css/menu.css\" rel=\"stylesheet\" type=\"text/css\"/>";
                Page.Header.Controls.Add(cssControl);

    引入js还可以利用:
    if (!Page.ClientScript.IsClientScriptIncludeRegistered("menu"))
                Page.ClientScript.RegisterClientScriptInclude(this.GetType(), "menu",
                    Page.ResolveClientUrl(@"~/menu/menu.js"));

    page类的东西蛮多的,呵呵~

    本文来自CSDN博客,转载请标明出处:http://blog.csdn.net/nailwl/archive/2009/06/30/4308832.aspx

  • 相关阅读:
    支付平台架构
    进程、线程与协程
    WSGI
    TLS(SSL)
    Python logger
    Jedis操作Redis--Hash类型
    Jedis操作Redis--List类型
    Jedis操作Redis--String类型
    SpringMVC整合Apache Shiro
    JDK中的Proxy技术实现AOP功能
  • 原文地址:https://www.cnblogs.com/ceci/p/1871690.html
Copyright © 2020-2023  润新知