當使用 Visual Studio 來測試 asp.net 的效能時,有時會出現
"The web site could not be configured correctly; getting ASP.NET process information failed. Requesting 'http://localhost/SimpleTestWebsite/VSEnterpriseHelper.axd' returned an error: The information returned is invalid. " 的訊息。
此狀況出現於 forms authentication。
解法:加入下面的宣告於 web.config
<location path="VSEnterpriseHelper.axd">
<system.web>
<authorization>
<allow users="?" />
</authorization>
</system.web>
</location>
沒有留言:
張貼留言