- 博客(16)
- 收藏
- 关注
转载 汉字编码问题转换
using System;class DistrictCode{ public static void Main(string[] args) { while(true) { Console.Write("请输入(输入“E”退出):"); st...
2017-08-29 09:58:00
261
转载 如何将数据库中的表导入到PowerDesigner中
1、打开PowerDesigner12,在菜单中按照如下方式进行操作file->Reverse Engineer->DataBase点击后,弹出New Physical Data Model的对话框,如下图: 2、在General选...
2017-08-29 09:57:00
437
转载 图片javascript缩小
function SetSize(obj, width, height) { myImage = new Image(); myImage.src = obj.src; if (myImage.width>0 && myImage.height>...
2017-08-29 09:57:00
135
转载 【教程】手把手教你如何利用工具(IE9的F12)去分析模拟登陆网站(百度首页)的内部逻辑过程...
【前提】 想要实现使用某种语言,比如Python,C#等,去实现模拟登陆网站的话,首先要做的事情就是使用某种工具,去分析本身使用浏览器去登陆网页的时候,其内部的执行过程,内部逻辑。 此登陆的逻辑过程,主要指的是,需要访问哪些地址,提交哪些http请求,其中包含了有哪些查询关键字,涉及到哪些...
2017-08-29 09:57:00
627
转载 Sql 中text类型字段判断是否为空
用 len关键字,字段=''会报错:数据类型 text 和 varchar 在 equal to 运算符中不兼容。 正确方法: 1. 字段 is null 2. datalength(字段)=0 注:SQL中的DATALENGTH函数用于返回任何表达式所占用的字节数。...
2017-08-29 09:57:00
996
转载 SQL ----->日期函数
select day(createtime) from life_unite_product --取时间字段的天值 select month(createtime) from life_unite_product --取时间字段的月值 select year(createtim...
2017-08-29 09:57:00
105
转载 修复IE9.0下PlaceHolder 属性问题js脚本
在开发前端系统时候碰到这种兼容问题,以下是个人解决方案,希望能给其他人带来帮助: var JPlaceHolder = { //检测 _check: function () { return 'placeholder' in do...
2017-08-29 09:57:00
102
转载 cookie 的“Value”=“xxxxx,xxxxx”部分无效
cookie 的“Value”=“xxxxx,xxxxx”部分无效在一些网站中有时候会遇到Cookie的值为逗号 但是在.Net中Cookie的值是不能直接使用逗号的 如果使用形如 C#代码1.Cookie cookie=new Cookie("name","xxxxx,xxxxx"...
2017-08-29 09:57:00
1328
转载 sql脚本查询日期时间段日期
---列举指定时间月份DECLARE @date1 VARCHAR(10) , @date2 VARCHAR(10)SET @date1 = '2010-01-01'SET @date2 = '2010-09-01'SELECT CONVERT(VARCHAR(7), CAST(LTRIM(Y...
2017-08-29 09:57:00
165
转载 日期函数(sql)
SQL 标量函数----->日期函数 day() 、month()、year()、2009年02月23日 星期一 11:30SQL 标量函数----->日期函数 day() 、month()、year()、DATEADD()、ATEDIFF()、DATENAME()、DA...
2017-08-29 09:57:00
97
转载 迅雷专用下载的几种代码
JavaScript代码: <!-- JavaScript专用链代码 --> <script src="http://pstatic.xunlei.com/js/webThunderDetect.js"></script> <script src...
2017-08-29 09:57:00
3279
转载 MVC拦截器记录操作用户日志
主要是用于记录用户操作动态, 1 public class OperationAttribute:ActionFilterAttribute 2 { 3 /// <summary> 4 /// 方法名称 5 /// </summary> 6...
2017-08-29 09:57:00
469
转载 二分法算法
using System;using System.Collections.Generic;using System.Text;namespace ConsoleApplication1{ class Program { ...
2017-08-29 09:57:00
109
转载 最全的Resharper快捷键汇总
编辑Ctrl + Space 代码完成Ctrl + Shift + Space代码完成Ctrl + Alt + Space代码完成Ctrl + P 显示参数信息Alt + Insert 生成构造函数,属性,重载成员函数,实现接口Ctrl + Alt + J 生成if,try..catch,#...
2017-08-29 09:57:00
629
转载 c# DESEncrypt 加密、解密算法
using System;using System.Security.Cryptography;using System.Text;namespace AttendService{ public static class DESEncrypt ...
2017-08-29 09:57:00
676
转载 js倒计时
<div id="divTime"></div> <script language="javascript" type="text/javascript"> //倒计时 window.setInterval(function() { Sh...
2017-08-29 09:57:00
113
空空如也
空空如也
TA创建的收藏夹 TA关注的收藏夹
TA关注的人