我正在尝试使用jQuery调用Web方法,并且问题与this question相同,但是我正在使用ASP.Net 3.5 Web表单,但是没有~/App_start/routeconfig.cs
。
如何使用ASP.Net 3.5修复此错误?
答案 0 :(得分:0)
为此,您可以在web.config
中添加以下代码:
<authorization>
<allow users="*" />
</authorization>
有关更多信息,请参见allow Element for authorization。
答案 1 :(得分:0)
如果问题确实出在授权中,请尝试允许匿名访问web.config
中的登录页面:
<location path="Login.aspx">
<system.web>
<authorization>
<allow users="*"/>
</authorization>
</system.web>
</location>