0
Simonlum created
Markdown is supported
Copy & paste or drag & drop images (max 30 MB per image)
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.
Markdown is supportedCopy & paste or drag & drop images (max 30 MB per image) -
0
It worked. Thank you
Markdown is supportedCopy & paste or drag & drop images (max 30 MB per image)


