Closed Ryansoldier closed 7 years ago
Hi. I've done some tests this days and haven't got this error. Are you running the latest version? Are you running this on IIS?
Aside from this questions, I should take a look at this soon.
Thank you.
Hello, Yes it's the latest version (at this date). Yes I've executed it in a simple web project hosted on IIS.
But I've just found the solution to avoid/reproduce it.
It's because in my applicationhost.config
file, I added properties to enable debugging :
Default configuration :
<asp scriptErrorSentToBrowser="true">
<cache diskTemplateCacheDirectory="%TEMP%\iisexpress\ASP Compiled Templates" />
<limits />
</asp>
Mine :
<asp scriptErrorSentToBrowser="true" enableParentPaths="true" bufferingOn="true" errorsToNTLog="true" appAllowDebugging="true" appAllowClientDebug="true">
<cache diskTemplateCacheDirectory="%TEMP%\iisexpress\ASP Compiled Templates" />
<session allowSessionState="true" />
<limits />
</asp>
So you can reproduce this problem if you add : appAllowDebugging="true" appAllowClientDebug="true"
(I think).
So, normally this problem occurs always but without blocking alert, but I don't understand why.
Here a screenshot of this error when I enable debugging : https://cloud.githubusercontent.com/assets/19835289/15931186/ee3609e2-2e56-11e6-8c55-76981a433828.png
Hum... Now I see. This doesn't came to the user, since the page is sent to the browser before it happens. You get this error because you are debugging the IIS process.
I should fix this on the next release.
Please, can you confirm if this is still occurring?
Hello, Yes indeed, except when I update my applicationhost.config file.
Hello,
I just discover your project, looks very nice but when I want to test to see if I can use it, I have 1 error when I load your test page:
And debugger shows error on
set i_items(i) = nothing
here :Regards, Ryan