Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I have tried this

<head id="Head1" runat="server">
<title>Back Office</title>
<link href="~/Styles/MasterPage.css" rel="stylesheet" type="text/css" />
<link href="Styles/custom-theme/jquery-ui-1.8.12.custom.css" rel="stylesheet" type="text/css" />
<script type="text/javascript" src="<%= Page.ResolveClientUrl("~/scripts/jquery-1.5.1.min.js") %>"></script>
<asp:ContentPlaceHolder ID="HeadContent" runat="server">
</asp:ContentPlaceHolder>
</head>

The error message is

enter image description here

I think too much, it is just find using this sorry

share|improve this question
I have copy your line from your question and check, I am not getting an issue. – Muhammad Akhtar May 23 '11 at 5:35
1  
You don't need to resolve the URL on your resources... – Phill May 23 '11 at 5:39
Yes, i'm just found out that it is just fine using this <script type="text/javascript" src="/Scripts/jquery-1.5.1.min.js"></script> – Sarawut Positwinyu May 23 '11 at 5:43
@Muhammad i use visual studio 2010, asp.net 4. I don't know it might be some different. – Sarawut Positwinyu May 23 '11 at 5:49
yes, I have check in VS 2010 and asp.net 4 – Muhammad Akhtar May 23 '11 at 5:52

3 Answers

up vote 2 down vote accepted

It seems that, you are trying to add controls to page dynamically. In this case, you can use the below code

var control = new HtmlGenericControl("script") ;
control.Attributes.Add("type", "text/javascript");
control.Attributes.Add("src", Page.ResolveClientUrl("~/scripts/jquery-1.5.1.min.js"));
//CDN will be best while hosting the application
//control.Attributes.Add("src", "http://ajax.googleapis.com/ajax/libs/jquery/1.5.1/jquery.min.js");
this.Page.Header.Controls.Add(control);
share|improve this answer
Where should i put this code, Is it Page_Load – Sarawut Positwinyu May 23 '11 at 5:55
1  
Yes, You can put this at Page_Load. – Bharath May 23 '11 at 6:05
The header required before page load has been load, this is not work too but thank. – Sarawut Positwinyu May 23 '11 at 7:17
1  
If you like to keep the script at first. You can use AddAt function this.Page.Header.Controls.AddAt(0, control) – Bharath May 24 '11 at 6:21
That's work, Thanks for the technique. – Sarawut Positwinyu May 30 '11 at 9:28

You have to be careful with the relative reference to the JavaScript file. If your page that references the MasterPage is not at the same directory level then things won't work either. There is an easy way to fix this. You can use ResolveUrl.
See the solution.

Edit

You would declare your main jQuery scripts within the master page, as you would normally:

<head runat="server">
  <link href="/Content/Interlude.css" rel="Stylesheet" type="text/css" />
  <script type="text/javascript" src="/Scripts/jquery-1.3.2.min.js"></script>
  <asp:ContentPlaceHolder ID="head" runat="server">
  </asp:ContentPlaceHolder>
</head>

And then any page specific JS files could be loaded within the Content controls that reference the Head ContentPlaceholder.

However, a better option would be to look into the ScriptManager and ScriptManagerProxy controls - these can provide you with a lot more control over the way your JS files are served to the client.

So you would place a ScriptManager control in you master page, and add a reference to the jQuery core code in that:

<body>
  <form id="form1" runat="server">
    <asp:ScriptManager ID="ScriptManager1" runat="server">
      <Scripts>
        <asp:ScriptReference Path="/Scripts/jquery-1.3.2.min.js" />
      </Scripts>
    </asp:ScriptManager>

Then, in you page that requires some custom JS files, or a jQuery plugin, you can have:

<asp:Content ID="bodyContent" ContentPlaceholderID="body">
  <asp:ScriptManagerProxy ID="ScriptManagerProxy1" runat="server">
      <Scripts>
        <asp:ScriptReference Path="/Scripts/jquery.fancybox-1.2.1.pack.js" />
      </Scripts>
  </asp:ScriptManagerProxy>

The ScriptManager allows you to do things like control where on the page scripts are rendered with LoadScriptsBeforeUI (or better yet, after by setting it to False).

share|improve this answer
Can i use only this on master page <script type="text/javascript" src="/Scripts/jquery-1.5.1.min.js"></script> Does / will return to root ? – Sarawut Positwinyu May 23 '11 at 5:44
1  
@shaahin - Disagreed. It's not a better way of managing JS files when you're not dealing with the AJAX toolkit. You're adding unnecessary overhead just to add static files. Use the ContentPlaceHolder thats in the header to manage static content on a page by page basis. Or put it directly in the header for a MasterPage. – Phill May 23 '11 at 5:59
1  
@Sarawut - ~/ is not valid unless you have a runat attribute on your control/element. '/' by itself specifies to the browser to look from the root directory, so if you link to '/css/main.css' from www.mysite.com/product/view.aspx it will look for the css file in www.mysite.com/css/main.css. When you use '~/' with runat-server, it will work out the path to the directory at runtime, so in the same example with '~/css/main.css' the rendered url will look like '../css/main.css' because it needs to drop the directory back 1 before finding the directory 'css'. (hope that makes sense) – Phill May 23 '11 at 6:03
1  
@Sarawut - It depends on the problem you're trying to solve. Having the tilder '~' makes it messy, it's what causes the '../', using a leading forward slash '/' doesn't cause this at all. So you could argue that '/' is better. But if you don't know where the project is hosted or the directory structure, then using ResolveUrl or '~/' is better. – Phill May 23 '11 at 6:44
1  
@Sarawut - What is the site is hosted in a virtual directory? Or the site is run off the root directory, say you're creating a blog and the company runs it next to their CMS but under the url www.mysite.com/blog/ - Thats when you don't know the directory structure and can't rely on basing your URL from the root. – Phill May 23 '11 at 6:50
show 6 more comments

Try using DataBinding with ResolveUrl

<script src="<%# ResolveUrl("~/Scripts/jquery-1.5.1.min.js") %>" 
          type="text/javascript"></script>

Then in your code behind call the Header's Databind

    protected override void OnInit(EventArgs e)
    {
        base.OnInit(e);
        Page.Header.DataBind();
    }

If you start getting errors regarding the ViewState you may need to disable it on the header.

<head runat="server" enableviewstate="false">
share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.