I\'m fairly new to ASP.NET MVC, and I\'m having a little trouble with scripts... in particular, I want to use jQuery in most pages, so it makes sense to put it in the master
Based on the other replies, perhaps an extension method on Html (which is very common for MVC), similar to Eduardo's answer:
<%=Html.Script("~/Scripts/jquery-1.2.6.js")%>
With:
public static string Script(this HtmlHelper html, string path)
{
var filePath = VirtualPathUtility.ToAbsolute(path);
return "";
}