English 中文(简体)
建立 IIS 7 失败的窗体验证( 使用jquery. ajaax) 失败
原标题:Form Authentication (using jquery.ajax) failed after setting up IIS 7

我在MVC3上建立一个网站, 我使用默认的 VS2010 网络服务器, 我的登录网页(使用jquery.

由于某些规格,我不得不在我的本地主机创建应用程序, 并开始使用本地主机网络服务器 。

是因为未知的原因, 我的ajax 呼叫甚至没有在我的控制器中实现我的动作。 一旦我点击登录, 它就会出错 。 我查看错误的Thrown 属性, 并且没有定义 。 我至少已经3个月没有修改所有登录代码, 因此, 问题不在于这一点 。 如果我使用开发服务器, 它就会正常工作 。

我读了几篇文章, 看起来像我的问题,但提供的解决办法对我没用。

感谢 谢谢

最佳回答

我猜你在AJAX请求中 硬码了内脏

$.ajax({
    url:  /somecontroller/someaction ,
    ...
});

而不是使用 URL 助手生成它 :

$.ajax({
    url:  @Url.Action("someaction", "somecontroller") ,
    ...
});
问题回答

暂无回答




相关问题
c# FormsAuthentication signOut another user

I m using formsAuthentication and as an admin user to the site i would like to be able to sign another user out. Is this possible ?

Hosted Silverlight LOB Application - Authentication Models

Our application is built in VB6 and delivered in a SaaS model via Citrix. Our subscribers must first authenticate to the Citrix Login Portal (AD) which gives them access to their applications. Each ...

ASP.Net Session Not Invalidated After Logout

I have a ASP.Net application in my login page I call FormsAuthentication.SignOut Session.Abandon() Session.Clear() however the Appscan is taking the ASPXAUTH cookie value then after logout is ...

热门标签