http://support.microsoft.com/kb/2661403/ko
키 또는 파일에 대 한이 제한에 도달 하는 응용 프로그램은 ASP을 수정할 수 있습니다.NET appSetting aspnet:MaxHttpCollectionKeys에서는 아래와 같은.NET 응용 프로그램의 구성 파일입니다. 이 설정은 오류 메시지 1과 오류 메시지 2에서 "현상" 절을 해결합니다.
<configuration>
<appSettings>
<add key="aspnet:MaxHttpCollectionKeys" value="1000" />
</appSettings>
</configuration>
<configuration>
<appSettings>
<add key="aspnet:MaxJsonDeserializerMembers" value="1000" />
</appSettings>
</configuration>
'Microsoft > C# & ASP.NET' 카테고리의 다른 글
C# 관리자 권한 처리 UAC 설정 처리(자체적) (0) | 2013.02.07 |
---|---|
HTML 특수문자코드표 (0) | 2013.01.30 |
Html Padding 과 Margin 차이점 (0) | 2012.11.29 |
C# Windows Service 작성 / 윈도우 서비스 (0) | 2012.11.22 |
C# Timer 차이점 (0) | 2012.11.22 |