Reputation: 1
I have a web and use IIS to setup
when I upload a pdf file which is over 100kb there is two situations
1. On the IIS local PC the action will success like this and the file is placed in the temp folder enter image description here
2. On other PC the action will fail and show nothing choose like this and the file is not placed in the temp folder enter image description here
I have tried some solutions
Plz someone help me to solve this problem sorry for my bad English :(
Upvotes: 0
Views: 596
Reputation: 41
Use the following code.
<httpRuntime maxRequestLength="51200" executionTimeout="300"/>
Upvotes: 0