摘要: using System; using System.Collections.Generic; using System.Linq; using System.Web; using System.Web.Mvc; namespace Taoke.filter { public class corsAttribute : ActionFilterAttribute { ... 阅读全文
posted @ 2016-12-24 19:20 小小高 阅读(246) 评论(0) 推荐(0)
摘要: 如:{"a":1,"b":2} { "a": 1, "b": 2} 阅读全文
posted @ 2016-12-24 19:18 小小高 阅读(176) 评论(0) 推荐(0)
摘要: public static string EncryptWithMD5(string source) { byte[] sor = Encoding.UTF8.GetBytes(source); MD5 md5 = MD5.Create(); byte[] result = md5.ComputeHash... 阅读全文
posted @ 2016-12-24 19:18 小小高 阅读(14286) 评论(0) 推荐(0)