I'm trying the following code to build an URL-
var httpPath= System.Web.VirtualPathUtility.ToAbsolute("~/ExcelFiles/" + fileName);
It returns -
/ExcelFiles/7b6ce1b2-828e-4c89-a893-bd32a00cd2e2.xlsx
But I want it to be -
http://my_site_address/ExcelFiles/7b6ce1b2-828e-4c89-a893-bd32a00cd2e2.xlsx
Any help?