private string GetAppPath()
{
string applicationPath = HttpContext.Current.Request.ApplicationPath;
if (applicationPath.Length > 1)
{
applicationPath = applicationPath + "/";
}
return applicationPath;
}