動態引入js檔案和css樣式表檔案

來源:互聯網
上載者:User
在開發web項目的過程中,總會碰到使用者控制項 .ascx 和頁面,或者頁面和主版頁面的很多關係。用局部的頁面

動態地給主版頁面引入js檔案或者樣式表檔案,或者在使用者控制項裡面根據需要動態引入js檔案和樣式表會比較好。

以下是我引入的一個方法:
           // 引入js檔案
            HtmlGenericControl scriptControl = new HtmlGenericControl("script");
            scriptControl.Attributes.Add("type", "text/javascript");
            scriptControl.Attributes.Add("language", "JavaScript");
            scriptControl.Attributes.Add("src", "http://images.dayoo.com/travel/9208.files/changeimg.js");
            Page.Header.Controls.Add(scriptControl);
            // 引入樣式表
             Literal cssControl = new Literal();
            cssControl.Text = "<link href=\"http://images.dayoo.com/photo/17358.files/css.css\" rel=\"stylesheet\" type=\"text/css\"/>";
            Page.Header.Controls.Add(cssControl);

以上代碼在頁面或者控制項的PageLoad裡面。

相關文章

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.