hi
I'm in the process of moving a site from a win2003 server to a win2008r2 server.
On my login page I'm using a RadCaptcha image that is now showing a broken link in stead of a captcha image (see src property in code snippet below).
I think it could be a write permissions issue, however, I'm unsure how/where to change what.
in my web.config I have:
adding:
<location path="Telerik.Web.UI.WebResource.axd">
<system.web>
<authorization>
<allow users="*"/>
</authorization>
</system.web>
</location>
didn't solve the issue
I'm in the process of moving a site from a win2003 server to a win2008r2 server.
On my login page I'm using a RadCaptcha image that is now showing a broken link in stead of a captcha image (see src property in code snippet below).
I think it could be a write permissions issue, however, I'm unsure how/where to change what.
Any suggestions?
<telerik:RadCaptcha ID="CaptchaImage" runat="server" ErrorMessage="Entered code as displayed" CaptchaTextBoxLabel="" />
<div id="ctl00_cph_cnt_CaptchaImage" class="RadCaptcha RadCaptcha_Default"> <!-- 2011.2.915.40 --><span id="ctl00_cph_cnt_CaptchaImage_ctl00" style="color:Red;visibility:hidden;">Entered code as displayed</span><div id="ctl00_cph_cnt_CaptchaImage_SpamProtectorPanel"> <img id="ctl00_cph_cnt_CaptchaImage_CaptchaImage" alt="" src="Telerik.Web.UI.WebResource.axd?type=rca&guid=a4dfd827-ddb3-4dd6-b837-01385b3dc115" style="height:50px;width:180px;border-width:0px;display:block;" /><p><input name="ctl00$cph_cnt$CaptchaImage$CaptchaTextBox" type="text" maxlength="5" id="ctl00_cph_cnt_CaptchaImage_CaptchaTextBox" title="" /><label for="ctl00_cph_cnt_CaptchaImage_CaptchaTextBox" id="ctl00_cph_cnt_CaptchaImage_CaptchaTextBoxLabel"></label></p> </div><input id="ctl00_cph_cnt_CaptchaImage_ClientState" name="ctl00_cph_cnt_CaptchaImage_ClientState" type="hidden" /></div>in my web.config I have:
<httpHandlers> <add path="Telerik.Web.UI.WebResource.axd" verb="*" type="Telerik.Web.UI.WebResource, Telerik.Web.UI" validate="false"/></httpHandlers>adding:
<location path="Telerik.Web.UI.WebResource.axd">
<system.web>
<authorization>
<allow users="*"/>
</authorization>
</system.web>
</location>
didn't solve the issue