I’m having a problem getting the system to run our our sandbox server. Everything runs fine on my local development machine. the web.config files are identical and has the handler in it.
<handlers>
<add name="AjaxFileUploadHandler" verb="*" path="AjaxFileUploadHandler.axd" type="AjaxControlToolkit.AjaxFileUploadHandler, AjaxControlToolkit" preCondition="integratedMode" />
<add name="DocImage" verb="GET,POST" path="DocImage.axd" type="DotnetDaddy.DocumentViewer.DocImageHandler, DocumentViewer" />
</handlers>
following the instructions outlined in the DocImage-Handler.pdf file, on the development machine, it shows as registered. image.png (8.6 KB)
When the project is published (in debug mode) to the server, I get the following error.
image.png (44.9 KB)
I have also tried various options with the BasePath but I think that really won’t be part of the solution until it is shown as being registered?
(.net webforms, IIS ver 10.0.17763.1 on Win Server 2019)
Thanks.