1

私は独自の方法で ASP.NET 独立メンバーシップを使用しています。それを達成するために、ユーザーがシステムにログインしたときに FormsAuthentication.SetAuthCookie を設定し、web.config からプロファイル、ロール、メンバーシップ設定などのすべてのメンバーシップ関係構成も削除しました。

問題は、どのコントローラーにもアクセスできないことです。ASP.NET MVC によって /Account/Logon ページにリダイレクトされますが、LogOn アクション メソッドでブレークポイントをキャッチできず、結果として解析されたコンテンツが表示されません。

この奇妙な動作を本当に引き起こす原因は何ですか? 問題を理解するために追加情報が必要かどうか尋ねてください。

私のweb.config設定は以下にあります。

<configuration>
  <configSections>

  </configSections>

  <appSettings>
    <add key="webpages:Version" value="1.0.0.0" />
    <add key="ClientValidationEnabled" value="true" />
    <add key="UnobtrusiveJavaScriptEnabled" value="true" />
    <add key="enableSimpleMembership" value="false" />
    <add key="autoFormsAuthentication" value="false" />
  </appSettings>
  <system.web>
    <globalization uiCulture="tr-TR" culture="tr-TR" />
    <compilation debug="true" targetFramework="4.0">
      <assemblies>
        <add assembly="System.Web.Abstractions, Version=4.0.0.0, Culture=neutral,  PublicKeyToken=31BF3856AD364E35" />
        <add assembly="System.Web.Helpers, Version=1.0.0.0, Culture=neutral,       PublicKeyToken=31BF3856AD364E35" />
        <add assembly="System.Web.Routing, Version=4.0.0.0, Culture=neutral,       PublicKeyToken=31BF3856AD364E35" />
        <add assembly="System.Web.Mvc, Version=3.0.0.0, Culture=neutral,           PublicKeyToken=31BF3856AD364E35" />
        <add assembly="System.Web.WebPages, Version=1.0.0.0, Culture=neutral,      PublicKeyToken=31BF3856AD364E35" />
        <add assembly="System.Data.Entity, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" />
        <add assembly="System.Data.Linq, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" />
      </assemblies>
    </compilation>
    <authentication mode="Forms">
      <forms loginUrl="~/Account/LogOn" timeout="2880" />
    </authentication>
    <pages>
      <namespaces>
        <add namespace="System.Web.Helpers" />
        <add namespace="System.Web.Mvc" />
        <add namespace="System.Web.Mvc.Ajax" />
        <add namespace="System.Web.Mvc.Html" />
        <add namespace="System.Web.Routing" />
        <add namespace="System.Web.WebPages" />
      </namespaces>
    </pages>
    <httpModules></httpModules>
  </system.web>
  <system.webServer>
    <modules runAllManagedModulesForAllRequests="true"></modules>
    <validation validateIntegratedModeConfiguration="false" />
  </system.webServer>
  <runtime>
    <assemblyBinding xmlns="urn:schemas-microsoft-com:asm.v1">
      <dependentAssembly>
        <assemblyIdentity name="System.Web.Mvc" publicKeyToken="31bf3856ad364e35" />
        <bindingRedirect oldVersion="1.0.0.0-2.0.0.0" newVersion="3.0.0.0" />
      </dependentAssembly>
      <dependentAssembly>
        <assemblyIdentity name="Newtonsoft.Json" publicKeyToken="30ad4fe6b2a6aeed" culture="neutral" />
        <bindingRedirect oldVersion="0.0.0.0-4.0.8.0" newVersion="4.0.8.0" />
      </dependentAssembly>
    </assemblyBinding>
  </runtime>
</configuration> 
4

2 に答える 2

1

Logon Postアクションでブレークポイントに到達していないと言うのでAuthoriseAttribute、Logon Postメソッドを設定した(またはでグローバルに設定したRegisterGlobalFilters)ことをお勧めします。Logon Postメソッドは、匿名でアクセス可能である必要があります。そうしないと、ユーザー名とパスワードを受信できません。

アカウントコントローラーから関連するアクションを投稿し、それでも問題が解決しない場合は、Global.asaxRegisterGlobalFiltersメソッドの内容を投稿することをお勧めします。

于 2012-05-20T15:05:29.520 に答える
0

Richard が述べたように、この記事では、MVC プロジェクトに AuthoriseAttribute を適用して AllowAnonymousAttribute を適用する方法も示していると思います。 http://weblogs.asp.net/jgalloway/archive/2012/04/18/asp-net-mvc-authentication-global-authentication-and-allow-anonymous.aspx

于 2012-05-24T20:19:48.313 に答える