上一页 1 ··· 27 28 29 30 31 32 33 34 35 ··· 47 下一页
摘要: We are using the OAuthAuthorizationServerProvider class to do authorization in our ASP.NET Web Api app. If the provided username and password is inval 阅读全文
posted @ 2016-10-12 16:36 James·wang 阅读(1114) 评论(0) 推荐(0)
摘要: 原意是想: new一个数组sis,可以自由修改数组 sis 里面的值,且不会影响到后台获得的node对象里面的siArray里面的值。 这样就可以在想reset这个页面的时候还可以用node对象去做reset,但是,发现,修改了sis数组的值,node.siArray里面的值也跟着变了。 那么,问题 阅读全文
posted @ 2016-10-10 09:34 James·wang 阅读(1820) 评论(0) 推荐(0)
摘要: http://chuna2.787528.xyz/chenxizhang/archive/2010/01/03/1638201.html 阅读全文
posted @ 2016-09-16 21:04 James·wang 阅读(261) 评论(0) 推荐(0)
摘要: SQL LINQ Lambda SELECT * FROM HumanResources.Employee from e in Employees select e Employees .Select (e => e) SELECT e.LoginID, e.JobTitle FROM HumanR 阅读全文
posted @ 2016-08-03 16:58 James·wang 阅读(532) 评论(0) 推荐(1)
摘要: 在nuget 中searh System.Linq.Dynamic 安装对应的版本, 这样都可以使用了 阅读全文
posted @ 2016-07-28 10:45 James·wang 阅读(802) 评论(0) 推荐(0)
摘要: 注意:不能直接用InternetSetCookie(url,null,cookie)这里的url一定要带:http://,调试中要注意查看区分。我就是这里没有注意花了很长时间才解决!! 阅读全文
posted @ 2016-07-24 10:07 James·wang 阅读(4930) 评论(0) 推荐(0)
摘要: http://chuna2.787528.xyz/qingyuan/p/4598628.html 阅读全文
posted @ 2016-07-20 16:16 James·wang 阅读(1103) 评论(0) 推荐(0)
摘要: /** * Description:[输出指定n位数的随机数的随机整数] * * @param n 指定n位数 * */ function RndNum(n) { var rnd = ""; for (var i = 0; i < n; i++) { rnd += Math.floor(Math.random() * 10); } re... 阅读全文
posted @ 2016-07-01 13:38 James·wang 阅读(630) 评论(0) 推荐(0)
摘要: http://chuna2.787528.xyz/qingliuyu/p/3835858.html 以下是C#下的日期与unix时间戳的相互转换: 阅读全文
posted @ 2016-06-30 18:34 James·wang 阅读(470) 评论(0) 推荐(0)
摘要: 以下是不正确的方法:var exp = null;if (exp == null){ alert("is null");}exp 为 undefined 时,也会得到与 null 相同的结果,虽然 null 和 undefined 不一样。注意:要同时判断 null 和 undefined 时可使用 阅读全文
posted @ 2016-06-20 10:24 James·wang 阅读(7827) 评论(0) 推荐(0)
上一页 1 ··· 27 28 29 30 31 32 33 34 35 ··· 47 下一页