上一页 1 2 3 4 5 6 7 8 9 ··· 41 下一页
摘要: 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 阅读全文
posted @ 2020-09-23 22:00 启明星工作室 阅读(346) 评论(0) 推荐(0) 编辑
摘要: 今天接到一个活,需要统计人员的工号信息,由于种种原因不能直接连数据库 [无奈]、[无奈]、[无奈]。采取迂回方案,写个工具自动登录网站,采集用户信息。 这也不是第一次采集ASP.NET网站,以前采集的时候就知道,这种网站采集比较麻烦,尤其是WebForm的ASP.NET 网站,那叫一个费劲。 喜欢现 阅读全文
posted @ 2020-09-03 10:02 启明星工作室 阅读(313) 评论(1) 推荐(0) 编辑
摘要: 秒数除以3600得到小时然后将余数除以60得到分钟,最后除以60得到的余数就是秒了 JS代码如下: function formatTime(seconds) { const h = Math.floor(seconds / 3600) const m = Math.floor((seconds % 阅读全文
posted @ 2020-08-07 14:58 启明星工作室 阅读(1931) 评论(0) 推荐(0) 编辑
摘要: 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. 阅读全文
posted @ 2020-07-13 08:28 启明星工作室 阅读(177) 评论(0) 推荐(0) 编辑
摘要: 更新:请使用laydate1.2 https://files.cnblogs.com/files/mqingqing123/laydate1.2.rar laydate1.1 在下拉年份时,会超过弹窗。 查看了一下源代码:laydate.dev.js 生成年修改为7,大约第443行。 //生成年列表 阅读全文
posted @ 2020-07-08 06:25 启明星工作室 阅读(653) 评论(0) 推荐(0) 编辑
摘要: Microsoft SQL Server 2008 R2 是微软发布的数据库软件,可以组织管理任何数据,这个版本非常经典,即使到现在仍然有很多网站在使用。Microsoft SQL Server 2008 R2相比SQL Server 2008功能更为完善稳定,推荐大家使用R2版本。麦田一棵葱为您提 阅读全文
posted @ 2020-07-07 09:22 启明星工作室 阅读(2847) 评论(0) 推荐(0) 编辑
摘要: <%@ Page Language="C#" AutoEventWireup="true" %> <%@ Import Namespace="System.Data" %> <!DOCTYPE html> <script runat="server"> protected void Page_Loa 阅读全文
posted @ 2020-07-04 14:23 启明星工作室 阅读(248) 评论(0) 推荐(0) 编辑
摘要: This example shows how to sort arrays in C#. Array can be sorted using static method Array.Sort which internally use Quicksort algorithm. Sorting arra 阅读全文
posted @ 2020-06-19 15:14 启明星工作室 阅读(314) 评论(0) 推荐(0) 编辑
摘要: using System; using System.Collections.Generic; using System.Linq; using System.Web; using System.Web.UI; using System.Web.UI.WebControls; using Syste 阅读全文
posted @ 2020-06-19 09:39 启明星工作室 阅读(449) 评论(0) 推荐(0) 编辑
摘要: 启明星考试系统Exam 2.0 发布了。 演示地址 http://demo.dotnetcms.org/exam/ 阅读全文
posted @ 2020-05-06 08:06 启明星工作室 阅读(553) 评论(0) 推荐(0) 编辑
上一页 1 2 3 4 5 6 7 8 9 ··· 41 下一页