0
Simonlum created
2 Answer(s)
-
0
It is not about zero. You can handle it in many way. For example you can add web config file. web.config
<?xml version="1.0" encoding="utf-8"?> <configuration> <system.web> <!-- ~ 2GB --> <httpRuntime maxRequestLength="2147483647" /> </system.web> <system.webServer> <security> <requestFiltering> <!-- ~ 4GB --> <requestLimits maxAllowedContentLength="4294967295" /> </requestFiltering> </security> </system.webServer> </configuration>
Or you can go to iss server settings and change it manually.
-
0
It worked. Thank you