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>标签中?
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
不需要要用户控件中引入,在引用页面引入相关文件即可。
用户控件里貌似是加载不了CSS的,JS倒是可以,CSS要加的话就加在调用这个用户控件的页面吧
写能写在CS类里,当然最好的方法是在引用的界面里加载这是最好的