일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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
- LEFT JOIN
- Banker's
- Kakao API Address
- 스크롤 사라짐
- MS-SQL
- Aspose.cells
- Oracle
- swift 화면전환
- Request.Form
- Banker's rounding
- .csv
- rounding
- 일본여행
- MYSQL
- 나만의 상점
- upbit
- MSSQL
- 가로 스크롤 막대
- 썸머노트
- 초딩수학
- Excel
- CSV
- 업비트
- 시트 탭 사라짐
- python
- 한글깨짐
- Android
- 세로 스크롤 막대
- chart.js
- league of legends
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