摘要:
public static string HttpPost(string url, string postData, bool isPost = true) { string method = isPost ? "POST" : "GET"; HttpHelper http = new HttpHelper(); ... 阅读全文
posted @ 2017-10-10 16:06
会弹猫的吉他
阅读(186)
评论(0)
推荐(0)
摘要:
using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Web; using System.Web.Caching; namespace Utility { /// /// 缓存操作,默认缓存1分钟 /// publ... 阅读全文
posted @ 2017-10-10 11:14
会弹猫的吉他
阅读(554)
评论(0)
推荐(0)