Click to See Complete Forum and Search --> : Operations Not Allowed Error


Jster
07-11-2007, 01:26 PM
I'm getting the error:
Request object error 'ASP 0104 : 80004005'

Operation not Allowed

Line 7

Line 7 looks like this: profitcenter = Request.Form("ProfitCenter").

It saves with other data, but this one particular data. Any idea as to why it's pushing an error?

Thanks,
Josh

lmf232s
07-11-2007, 04:15 PM
Either your ending your sentenacne or you have a period that is not needed at the end of
Request.Form("ProfitCenter").

buntine
07-14-2007, 09:48 PM
Generally, you would receive this error when attempting to upload a large file. By default IIS6.0 will throw this error when a user attempts to upload a file +200kb.

You can modify the default limit. See Google.

Cheers