摘要:语法:KEYS pattern 说明:返回与指定模式相匹配的所用的keys。 该命令所支持的匹配模式如下: (1)?:用于匹配单个字符。例如,h?llo可以匹配hello、hallo和hxllo等; (2)*:用于匹配零个或者多个字符。例如,h*llo可以匹配hllo和heeeello等; (3)[
阅读全文
摘要:http://www.cnblogs.com/xlhblogs/p/3356748.html
阅读全文
摘要:WebClient client = new WebClient(); client.Headers.Clear(); client.Headers.Add("Content-Type", "application/x-www-form-urlencoded;charset=utf-8"); cli
阅读全文
摘要:public string GetUserIP() { string _userIP; if(Request.ServerVariables["HTTP_VIA"] == null) { userIP= Request.UserHostAddress; } else { userIP= Reques
阅读全文