标签:ati 串操作 ack request tpc style 字符串操作 get context
/// <summary>
/// 返回上一个页面的地址
/// </summary>
/// <returns>上一个页面的地址</returns>
public static string GetUrlReferrer()
{
string retVal = null;
try
{
retVal = HttpContext.Current.Request.UrlReferrer.ToString();
}
catch{}
if (retVal == null)
return "";
return retVal;
}
标签:ati 串操作 ack request tpc style 字符串操作 get context
原文地址:https://www.cnblogs.com/-hao/p/9342955.html