摘要:
using System; using System.Collections.Generic; using System.Linq; using System.Web; using System.Web.UI; using System.Web.UI.WebControls; using Word= 阅读全文
摘要:
在HTML5里,提供了 阅读全文
摘要:
.NET的语法越来越简洁,书写简单的背后,这种简化的背后,.NET语言越来越SQL化以及Javascript化。 阅读全文
摘要:
How To: (Almost) Everything In WMI via C# - Part 3: Hardware Code https://files.cnblogs.com/files/mqingqing123/WMI_Hardware.zip This is the third arti 阅读全文
摘要:
4- Disable Chrome Software Reporter Tool using Chrome Policies Google recently introduced support for group policies to control the Chrome browser. Th 阅读全文
摘要:
關於LDAP的查詢: 1、查询种类: A、(objectCategory=computer) B、(objectCategory=group) C、(objectCategory=user) D、(&(objectCategory=person)(objectClass=user)) E、(obje 阅读全文
摘要:
This article introduces how to implement impersonation by modifying the Web.config file and running a particular section of code. It refers to the fol 阅读全文
摘要:
今天接到一个活,需要统计人员的工号信息,由于种种原因不能直接连数据库 [无奈]、[无奈]、[无奈]。采取迂回方案,写个工具自动登录网站,采集用户信息。 这也不是第一次采集ASP.NET网站,以前采集的时候就知道,这种网站采集比较麻烦,尤其是WebForm的ASP.NET 网站,那叫一个费劲。 喜欢现 阅读全文
摘要:
秒数除以3600得到小时然后将余数除以60得到分钟,最后除以60得到的余数就是秒了 JS代码如下: function formatTime(seconds) { const h = Math.floor(seconds / 3600) const m = Math.floor((seconds % 阅读全文
摘要:
David Hayden blogged about a cool new ROW_NUMBER() function that SQL 2005 provides that got me excited and inspired to write a little code last night. 阅读全文