BobbyTrebor
Technical User
Windows Servoer 2003 - IIS 6 - Classic ASP file upload.
My students upload an Access database through an ASP page to a folder on the server. Their db is then checked by another ASP.NET application. If there are errors in what they have done, they need to fix the errors and re-upload. This has been working fine for years. One glitch. If the SAME group of students tries to upload too many times within the timeout period (it seems), they get the classic error:
Microsoft VBScript runtime error '800a0046'
Permission denied
/xxxx/xxxxxxx/upload.asp, line 133
Here is line 133:
Don't get me wrong. The process works BUT it won't work repetitively. After a timeout, same group of students can try again.
Any thoughts? Thanks VERY much.
My students upload an Access database through an ASP page to a folder on the server. Their db is then checked by another ASP.NET application. If there are errors in what they have done, they need to fix the errors and re-upload. This has been working fine for years. One glitch. If the SAME group of students tries to upload too many times within the timeout period (it seems), they get the classic error:
Microsoft VBScript runtime error '800a0046'
Permission denied
/xxxx/xxxxxxx/upload.asp, line 133
Here is line 133:
Code:
Set oFile = oFS.CreateTextFile(sPath & FileName, True)
Don't get me wrong. The process works BUT it won't work repetitively. After a timeout, same group of students can try again.
Any thoughts? Thanks VERY much.