摘要: 解决方案如下:在window中打开功能里输入regedit,回车打开注册器。然后进入如下路径中 HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Control\Lsa\FipsAlgorithmPolicy将 enable设置为0 即可。注意要用管理员权限 阅读全文
posted @ 2016-05-17 17:18 网络耗子 阅读(572) 评论(0) 推荐(0) 编辑
摘要: 如何去掉超链接的下划线 阅读全文
posted @ 2013-12-04 16:46 网络耗子 阅读(333) 评论(0) 推荐(0) 编辑
摘要: 无标题文档 代码编写:懒人西西(转载请保留版权信息)查找更多代码,请访问:懒人图库 阅读全文
posted @ 2013-12-04 16:43 网络耗子 阅读(356) 评论(0) 推荐(0) 编辑
摘要: html {filter:progid:DXImageTransform.Microsoft.BasicImage(grayscale=1);-webkit-filter: grayscale(100%);} 阅读全文
posted @ 2013-12-04 16:37 网络耗子 阅读(144) 评论(0) 推荐(0) 编辑
摘要: ueditor 阅读全文
posted @ 2013-10-08 10:23 网络耗子 阅读(482) 评论(0) 推荐(0) 编辑
摘要: //今天 DateTime.Now.Date.ToShortDateString();//昨天,就是今天的日期减一 DateTime.Now.AddDays(-1).ToShortDateString();//明天,同理,加一 DateTime.Now.AddDays(1).ToShortDateString();//本周(要知道本周的第一天就得先知道今天是星期几,从而得知本周的第一天就是几天前的那一天,要注意的是这里的每一周是从周日始至周六止 DateTime.Now.AddDays(Convert.ToDouble((0-Convert.ToInt16(DateTime.Now.DayOf 阅读全文
posted @ 2013-06-03 16:23 网络耗子 阅读(184) 评论(0) 推荐(0) 编辑
摘要: [intrinsic column flags] (基本字段类型标识)- PK: primary key (column is part of a pk) 主键- NN: not null (column is nullable) 非空- UQ: unique (column is part of a unique key) 唯一- AI: auto increment (the column is auto incremented when rows are inserted) 自增 www.2cto.com [additional data type flags, depend on us 阅读全文
posted @ 2013-04-28 14:32 网络耗子 阅读(565) 评论(0) 推荐(0) 编辑
摘要: C#/.NET中的委托与事件-------------------------------------------------------------------------------- 目录译者的话概述委托(Delegates) 直接调用方法-不用委托 最基本的委托 调用静态方法 调用成员方法 多路广播事件(Events) 惯例 一个简单事件的示例 第二个事件例子 结论--------------------------------------------------------------------------------译者的话(By LuBen) 委托和事件对于初学者来说,总是难以 阅读全文
posted @ 2010-12-20 10:33 网络耗子 阅读(461) 评论(0) 推荐(0) 编辑
摘要: System.Globalization.GregorianCalendar gc = new System.Globalization.GregorianCalendar(); int weekOfYear = gc.GetWeekOfYear(DateTime.Now, System.Globalization.CalendarWeekRule.FirstDay, DayOfWeek.Mon... 阅读全文
posted @ 2010-08-06 16:10 网络耗子 阅读(512) 评论(0) 推荐(0) 编辑
摘要: 用jamil发送邮件要先下载jamil软件安装后才能使用,然后将jamil.dll复制到bin目录下添加引用using System;using System.Data;using System.Data.SqlClient;using System.Configuration;using System.Web.Util;using System.Web.Mail;using System.Net... 阅读全文
posted @ 2010-07-06 08:39 网络耗子 阅读(813) 评论(0) 推荐(0) 编辑