私は問題があります。ASP.NET MVC 4 で接続 SSL(https) を使用して Web を構成しました。しかし、単純なフォームで資格情報を送信すると、Fiddler 2 は資格情報をプレーン テキストで表示します...
私のウェブ設定ファイル:
<authentication mode ="Forms">
<forms loginUrl="~/Account/LogOn" timeout="20" protection="All" requireSSL="true" />
<!-- <forms loginUrl="~/Account/LogOn" timeout="20" protection="All" requireSSL="true" /> -->
</authentication>
<httpCookies httpOnlyCookies="true" requireSSL="true" lockItem="true"/>
およびグローバル ファイル:
filters.Add(new HandleErrorAttribute());
filters.Add(new System.Web.Mvc.AuthorizeAttribute());
filters.Add(new RequireHttpsAttribute());
助けはありますか?ありがとうございました!