일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | 3 | 4 | 5 | ||
6 | 7 | 8 | 9 | 10 | 11 | 12 |
13 | 14 | 15 | 16 | 17 | 18 | 19 |
20 | 21 | 22 | 23 | 24 | 25 | 26 |
27 | 28 | 29 | 30 |
Tags
- MSSQL
- 중1코딩
- 한글깨짐
- MS-SQL
- league of legends
- chart.js
- httpclient timeout
- 초딩수학
- ASP.NET MVC
- Excel
- 썸머노트
- 코딩입문
- 중학생코딩
- MYSQL
- 일본여행
- 아이코딩습관
- Android
- largelanguagemodels
- cc챔피언
- .csv
- python
- PromptEngineering
- swift 화면전환
- AIoptimization
- 오블완
- Aspose.cells
- Kakao API Address
- 엔트리
- 블록코딩
- upbit
Archives
- Today
- Total
DBA
File Upload 할때 파일 크기를 최대 사이즈로 설정 본문
728x90
반응형
SMALL
web.config 에 설정
<configuration>
<system.web>
<httpRuntime maxRequestLength="1048576" />
</system.web>
</configuration>
<system.webServer>
<security>
<requestFiltering>
<requestLimits maxAllowedContentLength="1073741824" />
</requestFiltering>
</security>
</system.webServer>
</configuration>
출처 : http://stackoverflow.com/questions/3853767/maximum-request-length-exceeded
728x90
반응형
LIST
Comments