C# StringHelper,字符串操作类

2021-03-28 05:25

阅读:621

标签:ati   串操作   ack   request   tpc   style   字符串操作   get   context   

///


/// 返回上一个页面的地址
///
/// 上一个页面的地址
public static string GetUrlReferrer()
{
string retVal = null;

try
{
retVal = HttpContext.Current.Request.UrlReferrer.ToString();
}
catch{}

if (retVal == null)
return "";

return retVal;
}

C# StringHelper,字符串操作类

标签:ati   串操作   ack   request   tpc   style   字符串操作   get   context   

原文地址:https://www.cnblogs.com/-hao/p/9342955.html


评论


亲,登录后才可以留言!