Skip to content

Instantly share code, notes, and snippets.

@bestpika
Last active November 5, 2015 01:09
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save bestpika/a244ddcf9c49147ecfac to your computer and use it in GitHub Desktop.
Save bestpika/a244ddcf9c49147ecfac to your computer and use it in GitHub Desktop.
檔案上傳限制
<configuration>
<system.web>
<!-- KBytes -->
<!-- 500MB -->
<httpRuntime maxRequestLength="512000" />
</system.web>
<system.webServer>
<security>
<requestFiltering>
<!-- Bytes -->
<!-- 500MB -->
<requestLimits maxAllowedContentLength="524288000" />
</requestFiltering>
</security>
</system.webServer>
</configuration>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment