So, I see in the FAQ that SlickUpload doesn't function when trace is enabled, but I am curious why this is the case?
SlickUpload works great on my local IIS and inside the dev studio 2008 web server, but when I put everything up on my DiscountASP.net (IIS7) account, it doesn't work. Since DiscountASP.net doesn't offer debugging, my only option is to use trace. So, I enabled trace via my web.config:
<trace enabled="true" localOnly="false" pageOutput="false" />
Only to find that SlickUpload stops working all together, giving me a useless /Trace.axd. Why is this?
With Trace disabled, my <uploadParser fileFilter /> is properly called to generate a file name, and the uploaded file is put in the correct place, however the call to HttpUploadModule.GetUploadStatus() seems to always return NULL, which means I can't figure out where the file went...
How am I supposed to work this out without trace or debug? I would rather not fake trace to a label/div since it would require a very large change...