Hi! i try to upload file to my website by asp upload function, but the page displays the error to me. Request object error 'ASP 0104 : 80004005' Operation not Allowed the file that i uploaded about 300k, i think the default size of asp is 200k, is that right. would you help me to change this size to 10MB, thank you where do I access the AspMaxRequestEntityAllowed property? my website is 3asuper.tk
You can either set the upload limit from IIS manager or set if from web.config file http://www.iis.net/ConfigReference/system.webServer/asp/limits
i try the web.config, but it does't work <?xml version="1.0" encoding="UTF-8"?> <configuration> <location path=""> <system.webServer> <asp> <limits maxRequestEntityAllowed="1073741824" /> </asp> </system.webServer> </location> </configuration> this is the file that i got. the asp upload application still displays the error