2014-02-06 1 views
0

내가이 ASP.NET 웹 응용 프로그램을 가지고, Webapp2는 ASP.NET 2.0이며, webapp1는 IIS는 윈도우 서버 내가 webapp2을위한 웹 사이트를 만들 2008 년ASP.NET 1.1 웹 응용 프로그램을 asp.NET 2.0의 하위 작업으로 만드는 방법은 무엇입니까?

에 ASP.NET 1.1 입니다.

다음 webapp2에서 웹 응용 프로그램을 (응용 프로그램을 추가) webapp1 생성 2.0 asp.net에 대한 설정 응용 프로그램 풀 및 설정 applocation 풀 Asp.NET 1.1로 Asp.net 1.1

설정 응용 프로그램 풀과 같은 및 통합으로 관리되는 파이프 라인 모드 , 그런 다음 webapp1이 작동하지 않습니다. 클래식으로

Asp.NET 1.1로
HTTP Error 500.21 - Internal Server Error 
Handler "PageHandlerFactory-Integrated" has a bad module "ManagedPipelineHandler" in its module list 

설정 응용 프로그램 풀 및 관리되는 파이프 라인 모드, 다음 webapp1가 작동하지 : 같은 오류가 발생했습니다. 내가 webapp1에 대한 응용 프로그램 풀 Asp.net 2.0을 설정하면

Configuration Error 
Description: An error occurred during the processing of a configuration file required to service this request. Please review the specific error details below and modify your configuration file appropriately. 

Parser Error Message: Unrecognized attribute 'inheritInChildApplications'. 

Source Error: 

Line 1: <?xml version="1.0" encoding="utf-8" ?> 
Line 2: <configuration> 
Line 3: <location path="" inheritInChildApplications="false" > 
Line 4:  <system.web> 
Line 5:   <!-- DYNAMIC DEBUG COMPILATION 

, 그것은 노력하고 있지만, 어떤 점에서 나는 다음과 같은 오류 있어요 : 같은 오류가 발생했습니다

이전 webapp1가 ASP를위한 또 다른 웹 응용 프로그램에서입니다. net 1.1 및 잘 작동 (동일한 서버에서)

이 문제를 해결하는 방법?

답변

0

inheritInChildApplications 속성을 1.1 apps web.config에서 제거하려고합니다.이 기능은 .net 2.0에서 도입 된 것으로 보입니다.

see msdn article here

inheritInChildApplications = "FALSE"

관련 문제