Click here to Skip to main content
15,897,187 members
Please Sign up or sign in to vote.
0.00/5 (No votes)
See more:
Hi Guys

Am having an error when i click my image button,below is the error :
"Error executing child request for /Manager/frmManagerStudentInfo.aspx."


then it points to this line:
" Server.Transfer("~/Manager/frmManagerStudentInfo.aspx?EmpRecNumber=" + Session["EmpRecNumber"].ToString());"

Help...what am i missing here?
Posted

1 solution

See here for the cause1 and the resolution2 of your predicament: "Error Executing Child Request" Error Message When You Use Server.Transfer or Server.Execute in ASP.NET Page[^]

Regards,

Manfred



1 "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."


2 "To resolve this problem, use the Response.Redirect method to redirect the request from an ASP.NET page to an ASP page."
 
Share this answer
 
v2

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900