【文件属性】:
文件名称:C#实用类集DdotNet
文件大小:2.44MB
文件格式:RAR
更新时间:2022-04-24 12:45:45
C#实用类集
200多个工具类 .cs
文件读写
文件夹读写
各种加密解密
XML操作
#region 获得用户IP
///
/// 获得用户IP
///
public static string GetUserIp()
{
string ip;
string[] temp;
bool isErr = false;
if (System.Web.HttpContext.Current.Request.ServerVariables["HTTP_X_ForWARDED_For"] == null)
ip = System.Web.HttpContext.Current.Request.ServerVariables["REMOTE_ADDR"].ToString();
else
ip = System.Web.HttpContext.Current.Request.ServerVariables["HTTP_X_ForWARDED_For"].ToString();
if (ip.Length > 15)
isErr = true;
else
{
temp = ip.Split('.');