上一页 1 ··· 22 23 24 25 26 27 28 29 30 ··· 46 下一页
摘要: 调用: ClipboardHelper.CopyToClipboard("hello world", ""); /// /// Helper to encode and set HTML fragment to clipboard. /// See http://theartofdev.com/2014/06/12/setting-htmltext-to-clip... 阅读全文
posted @ 2017-02-24 16:53 小小高 阅读(1577) 评论(2) 推荐(0)
摘要: 获取url参数 $.request.queryString() 阅读全文
posted @ 2017-02-24 09:31 小小高 阅读(251) 评论(0) 推荐(0)
摘要: 本文讲述c#中如何转义双引号。 c#中转义双引号",使用的转义字符仍然是\。 string str = "\"www.itjsxx.com\""; 但是,在c#的逐字字符中,双引号的转义字符不能用\了,会报错,而是用两个双引号""来表示"。 string str1 = @"""www.itjsxx. 阅读全文
posted @ 2017-02-22 20:06 小小高 阅读(4335) 评论(0) 推荐(0)
摘要: using System; using System.Web.Http.Filters; public class AllowCrossSiteJsonAttribute : ActionFilterAttribute { public override void OnActionExecuted(HttpActionExecutedContext actionExecutedCont... 阅读全文
posted @ 2016-12-27 00:27 小小高 阅读(250) 评论(0) 推荐(0)
摘要: 1.将网站发布到IIS,访问发生如下错误: HTTP 错误 500.21 - Internal Server Error处理程序“PageHandlerFactory-Integr”在其模块列表中有一个错误模块“ManagedPipelineHandler” 方法: 命令行:%windir%\Mic 阅读全文
posted @ 2016-12-26 15:42 小小高 阅读(238) 评论(0) 推荐(0)
摘要: 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 小小高 阅读(245) 评论(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 小小高 阅读(14285) 评论(0) 推荐(0)
摘要: function defaultSelected() { var curr = $("#leftTree li[onclick*='" + $("#content_iframe").attr("src") + "']"); if (curr.size() > 0) { $(curr[0]).addClass("selected"); ... 阅读全文
posted @ 2016-12-20 19:45 小小高 阅读(1575) 评论(0) 推荐(0)
摘要: 第一步:访问:https://www.microsoft.com/zh-cn/software-download/windows10ISO/ 默认就只能下载win10,这怎么行呢。巨硬程序员貌似没做服务端验证。。第二步:浏览器控制台输入以下js代码: 效果: 需要下载的就快下。指不定哪天就被封了。 阅读全文
posted @ 2016-12-01 17:50 小小高 阅读(1657) 评论(5) 推荐(1)
上一页 1 ··· 22 23 24 25 26 27 28 29 30 ··· 46 下一页