I have a virtual path (example: \"~/Images/Banner.jpg\") and I want to make that an absolute web path (example: \"/ApplicationRoot/Images/Banner.jpg\"). There is a method tha
System.Web.VirtualPathUtility.ToAbsolute("yourRelativePath");
There you go :)