猿问

asp.net中,如何在用户控件里加载CSS样式

JS可以这样加载:

<asp:ScriptManagerProxy ID="ScriptManagerProxy1" runat="server">
 <Scripts>
        <asp:ScriptReference Path="/Js/jquery.timers-1.2.js" />
 </Scripts>
</asp:ScriptManagerProxy>

这样会自动加在页面中的<head></head>标签中。

 

如何在控件中加载特定的CSS文件也加载到生成页面的<head></head>标签中?


富国沪深
浏览 701回答 2
2回答

qq_笑_17

不需要要用户控件中引入,在引用页面引入相关文件即可。

慕工程0101907

public partial class DropDownSelect : System.Web.UI.UserControl{&nbsp;&nbsp;&nbsp; protected void Page_Load(object sender, EventArgs e)&nbsp;&nbsp;&nbsp; {&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; if (!IsPostBack)&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; {&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; this.Page.Header.Controls.Add(new LiteralControl("<link href=\"WOODY-WU.css\" type=\"text/css\" rel=\"stylesheet\" />"));&nbsp;加入紅色的就可以在目標頁引入CSS
随时随地看视频慕课网APP
我要回答