public static string GetContextRoot()
{
return HttpContext.Current.Request.ApplicationPath.TrimEnd('/') + "/";
}
使用实例:
Response.Redirect(Utilities.CommonHelper.GetContextRoot() + "ErrorPage.aspx", false);
实例表示页面重定向到ErrorPage.aspx页面.
public static string GetContextRoot()
{
return HttpContext.Current.Request.ApplicationPath.TrimEnd('/') + "/";
}
使用实例:
Response.Redirect(Utilities.CommonHelper.GetContextRoot() + "ErrorPage.aspx", false);
实例表示页面重定向到ErrorPage.aspx页面.