I have created a new folder say XML by using solution explorer. I have added xml and xsl files say a.xsl and b.xml in it. How can I fetch these files by giving relative path?
Example: transform.Load("~/XML/a.xsl"); //load up the stylesheet
But I am getting error here that file not found. When I debug it tries to take file from following path
C:\Program Files\IIS Express\~\XML\PersonnelHTML.xsl'.
Please suggest the solution