Hi,
I'm trying to run a asp.net into a virtual folder of a dnn website, but now I have few another problems:
1. I get the error:
<codeSubDirectories>
Line 87: <add directoryName="Reports" />
Line 88: <add directoryName="Survey" />
Line 89: </codeSubDirectories>
I managed to work around by creating APP_CODE\Reports and APP_CODE\Survey, but is there any better (clean) solution?
2. I get the following error
<add verb="GET" path="FtbWebResource.axd" type="FreeTextBoxControls.AssemblyResourceHandler, FreeTextBox" />
<!-- This is for CAPTCHA support -->
<add verb="*" path="*.captcha.aspx" type="DotNetNuke.UI.WebControls.CaptchaHandler, DotNetNuke" />
<!-- This is for Serving files, secure, insecure, from database -->
<add verb="*" path="LinkClick.aspx" type="DotNetNuke.Services.FileSystem.FileServerHandler, DotNetNuke" />
First, in line with FreeText, I workaround by copying FreeTextBox.dll from DNN to bin's of my app. But is there another way?
Then the line with captcha.aspx, I have no idea how to fix / workaround
And finally, I expect that the line with LinkClick.aspx will cause me an error too - how to handle this?
Thanks
Bogdan