Is there a way to get the physical filepath from an ASP.NET\'s URL?
Scenerio: I have an app that is on two severs, but it will now be on lots more, and each server p
This Server.MapPath ( "/" ); or this HttpContext.Current.Server.MapPath ( "/" ); should give you what you need.
Server.MapPath ( "/" );
HttpContext.Current.Server.MapPath ( "/" );