authentication登录页与母版页加载js问题?
PageMaster母版页里这样引用 js<script src='<%=getURLAbsoulate("~/Script/jquery-1.8.2.min.js") %>' type="text/javascript"></script>
Web.config中这样设置登录页
<authentication mode="Forms">
<forms loginUrl="Login.aspx" protection="All"></forms>
</authentication>
<authorization>
<deny users="?"/>
<allow users="*"/>
</authorization>
页便用了PageMaster母版页的子页面(Login.aspx)却不能使用jQuery,在ie的调试工具中发现js没有加载。为什么? 怎么解决。。。求。解
authentication web.config 母版
补充:.NET技术 , ASP.NET