Make sure the path begins with "/" for the root of your site, then wherever your js and css folders are. If they are both in the root then the above will work fine.
http://forums.asp.net/t/1886166.aspx/1?jquery+not+working+with+master+page
ตัวหนอนใช้กับพวกที่มี runat server จะเวิร์ค. เข้าใจว่าเป็นเช่นนั้น
1. กรณีต้องการ Include jQuery ที่ master page
2. Page ที่ Implement master page นี้ สามารถอยู่โฟลเดอร์ใดๆ ก็ได้
3. สามารถทำงานได้ทั้งขณะรันบน ASP.NET Development Server และ Production IIS Server
ผมทดสอบกับ Web Site Project นะครับ
ไม่รู้ว่า Web Application Project จะเวิร์คไหม
Protected Sub Page_Load(sender As Object, e As System.EventArgs) Handles Me.Load
Me.Page.ClientScript.RegisterClientScriptInclude("jquery", Me.ResolveClientUrl("~/js/jquery-1.10.1.min.js"))
End Sub