일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 | 31 |
- 윈폼
- ASP
- aspnet
- 윈도우
- CONVERT()
- attr()
- MSSQL
- Excel
- 리포팅서비스
- c#
- javascript
- 엑셀
- Winform
- DataGrid
- jQuery
- SSRS
- MS
- microsoft
- 오라클
- 이클립스
- windows
- 단축키
- replace()
- 프로시저
- oracle
- 태그를 입력해 주세요.
- 마이크로소프트
- 자바스크립트
- 비주얼스튜디오
- IIS
- Today
- Total
DJ메탈짱™의 Free Style
[ASP.NET] 관리되는 통합 파이프라인 모드에 적용되지 않는 ASP.NET 설정이 있습니다. 본문
VS2003 to VS2010 마이그레이션 하는 과정에서
관리되는 통합 파이프라인 모드에 적용되지 않는 ASP.NET 설정이 있습니다
에러 발생시 Visual Studio 명령프롬프트에서 아래 명령어를 실행하여 웹사이트 자체를 마이그레이션 해준다.
%SystemRoot%\system32\inetsrv\appcmd migrate config "Default Web Site/"
--> Default Web Site : 웹 사이트명
그러면...
"system.web/httpModules" 섹션을 마이그레이션했습니다." 등과 같은 결과메시지 나오는데...
web.config 파일을 보면 아래 부분이 추가되는 것을 확인할 수 있음.
<system.webServer>
<httpErrors errorMode="Detailed" />
<handlers>
<add name="ajax/*.ashx_POST,GET" path="ajax/*.ashx" verb="POST,GET" type="Ajax.PageHandlerFactory, Ajax" preCondition="integratedMode,runtimeVersionv2.0" />
<add name="FtbWebResource.axd_GET" path="FtbWebResource.axd" verb="GET" type="FreeTextBoxControls.AssemblyResourceHandler, FreeTextBox" preCondition="integratedMode,runtimeVersionv2.0" />
</handlers>
</system.webServer>
'일(job) > MS(Microsoft)' 카테고리의 다른 글
[ASP.NET] CustomValidator, ErrorMessage 속성 관리 (0) | 2015.12.11 |
---|---|
datagrid to excel,csv export 할때 오류나는 경우...확인사항 (0) | 2015.12.11 |
[ASP.NET] 서버 위치한 pdf파일 저장, download (0) | 2015.12.08 |
[ASP.NET] ReportViewer 사용시 오류발생, web.config (0) | 2015.12.08 |
[ASP.NET] HTTP 오류 500.21 - Internal Server Error (0) | 2015.12.08 |