Telerik Radscheduler在“exporttopdf”上给出(403)Forbidden错误

时间:2014-01-06 15:49:29

标签: asp.net iis telerik

radschedular的exporttopdf功能给出了这个错误:

  

远程服务器返回错误:(403)Forbidden。

它在本地工作正常,但当部署到服务器时,它会出现此错误。我已在web.config

中授予用户权限
<location path="Telerik.Web.UI.WebResource.axd">
    <system.web>
        <authorization>
            <allow users="*"/>
        </authorization>
    </system.web>
</location>  

我理解403表示服务器理解请求但拒绝处理它。我想知道它是否与服务器上某些位置的写权限有关。如果可能的话,我也在寻找模仿的可能性。

1 个答案:

答案 0 :(得分:0)

请改为尝试:

<location path="Telerik.Web.UI.WebResource.axd">
    <system.web>
        <authorization>
            <allow users="?"/>
        </authorization>
    </system.web>
</location>

如果问题仍然存在,请按照此处的Telerik说明解决您的问题:

http://www.telerik.com/help/aspnet-ajax/scheduler-troubleshootings-pdfexport.html