博客园  :: 首页  :: 新随笔  :: 联系 :: 订阅 订阅  :: 管理

2016年12月19日

摘要: Use setInterval instead of setTimeout check out codes: http://jsfiddle.net/GustvandeWal/295jqqqb/ 阅读全文

posted @ 2016-12-19 13:39 Vampire_D 阅读(165) 评论(0) 推荐(0) 编辑

2011年12月14日

摘要: 1.Asp.net1.1获取客户端IP:private string GetClientIP() { string result = HttpContext.Current.Request.ServerVariables["HTTP_X_FORWARDED_FOR"]; if (null == result || result == String.Empty) { result = HttpContext.Current.Request.ServerVariables["REMOTE_ADDR"]; } if (null == result || res 阅读全文

posted @ 2011-12-14 09:15 Vampire_D 阅读(1337) 评论(1) 推荐(0) 编辑