------解决方案-------------------- 非常好弄特别简单!到discuz里下载一下数据库和一个dll文件就可以实现你要的效果了!详细效果请见:http://www.52shw.com/lylb.aspx?id=257和http://www.52shw.com/newspl.aspx?id=9184
------解决方案-------------------- public static string GetIP() { string ip = "";
if (HttpContext.Current.Request.ServerVariables["HTTP_VIA"] != null) { ip = HttpContext.Current.Request.ServerVariables["HTTP_X_FORWARDED_FOR"].ToString(); } else { ip = HttpContext.Current.Request.ServerVariables["REMOTE_ADDR"].ToString(); }