asp.net - Why do I get a timeout when uploading files larger than 100KB? -
i have web site on iis7. can upload maximum of 100kb, if try files larger 100k timeout error.
i have added following setting web.config
file getting same error:
<security> <requestfiltering> <requestlimits maxallowedcontentlength="2000000000"></requestlimits> </requestfiltering> </security>
what wrong?
you might want check <httpruntime>
element in web.config ensure isn't limiting request size there.
Comments
Post a Comment