0

我的一个 asp.net 页面使用 Web 服务对象从数据库中获取数据,它在本地以及托管服务器上工作正常,如果NOT using Forms Authentication对同一页面使用表单身份验证方法时,出现以下运行时错误,

Error :The request failed with the error message:
--
<html><head><title>Object moved</title></head><body>
<h2>Object moved to <a href="%2fLogon.aspx%3fReturnUrl%3d%252fChocolates.asmx">here</a>.</h2>
</body></html>

<sessionState mode="InProc" cookieless="false" timeout="30" />在 web.config 中使用,

请帮助我得到这个问题的答案。谢谢你。

4

1 回答 1

0

您是否尝试从表单身份验证中排除“chocolates.asmx”?例子:

<location path="path_to_the_file_or_folder">
    <system.web>
        <authorization>
            <allow users="*"/>
        </authorization>
    </system.web>
</location>
于 2013-08-07T14:47:46.000 回答