摘要:
public string GetUserIP() { string result = HttpContext.Current.Request.ServerVariables["HTTP_X_FORWARDED_FOR"]; if (null == result || result == String.Empty) { ... 阅读全文
摘要:
using System; using System.Collections.Generic; using System.IO; //添加命名空间或程序集 using System.Linq; using System.Security.Cryptography; //添加命名空间或程序集 using System.Text; using System.Web.Security; //添... 阅读全文