It is possible to create or emulate a virtual directory using C# for load controls (ascx) from a directory outside my web application scope?
Im trying :
UserControl newUserControl = (UserControl)LoadControl( @"D:\" + ascxFileName);
Obviously I get runtime exception as the follow : 'D: \ ClaimOutputs \ SolicitudDatoIncorrecto_6.ascx' is not a valid virtual path.
Thanks