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>标签中?
2 回答
慕工程0101907
TA贡献1887条经验 获得超5个赞
public partial class DropDownSelect : System.Web.UI.UserControl
{
protected void Page_Load(object sender, EventArgs e)
{
if (!IsPostBack)
{
this.Page.Header.Controls.Add(new LiteralControl("<link href=\"WOODY-WU.css\" type=\"text/css\" rel=\"stylesheet\" />"));
加入紅色的就可以在目標頁引入CSS
- 2 回答
- 0 关注
- 700 浏览
添加回答
举报
0/150
提交
取消