PRB: "Error Executing Child Request" Error Message When You Use Server.Transfer or Server.Execute in ASP.NET Page (320439)



The information in this article applies to:

  • Microsoft ASP.NET (included with the .NET Framework 1.1)
  • Microsoft ASP.NET (included with the .NET Framework) 1.0
  • Microsoft Active Server Pages 3.0

This article was previously published under Q320439

SYMPTOMS

When you try to use the Server.Transfer or the Server.Execute method in your ASP.NET page to transfer control from an ASP.NET page to an Active Server Pages (ASP) page, you may receive the following error message:
Error executing child request for PageName.asp.
where PageName.asp is the name of your ASP page.

CAUSE

Microsoft Internet Information Services (IIS) dispatches the Server.Transfer or the Server.Execute request to the appropriate Internet Server Application Programming Interface (ISAPI) extension based on the extension of the requesting file. For example, a request for an .aspx page is dispatched to the Aspnet_isapi.dll ISAPI extension.

After the request is dispatched to appropriate ISAPI extension, the ISAPI extension cannot call another ISAPI extension. You receive the error message that is listed in the "Symptoms" section because the Aspnet_isapi.dll file, which handles requests to ASP.NET pages, cannot forward the request to the Asp.dll file, which handles requests to ASP pages.

RESOLUTION

To resolve this problem, use the Response.Redirect method to redirect the request from an ASP.NET page to an ASP page.

STATUS

This behavior is by design.

Modification Type:MinorLast Reviewed:7/8/2003
Keywords:kbHttpRuntime kbprb KB320439