欢迎来到【一个大西瓜】的博客

不曾为梦想奋斗,拿什么去燃烧青春。有梦之人亦终将老去,但少年心气如昨。
太阳每一个时刻都同时是夕阳和朝阳,每天她沉入西边,意味着她同时从另一面土地升起。
扩大
缩小

11 2016 档案

百度开源的70+项目
摘要:百度,一家让人既爱又恨的企业,血友吧贴吧被卖,魏则西事件的持续发酵,一时间将百度推到了舆论的风口浪尖上。是非对错,我们在这里也不多做评判,本文呢为大家整理了百度开源的70+项目,看看有没有感兴趣的。本文内容综合整理自oschina、github。 1. JavaScript图表库 ECharts E 阅读全文

posted @ 2016-11-30 15:59 一个大西瓜咚咚咚 阅读(12978) 评论(1) 推荐(2) 编辑

【javascript】js 判断微信浏览器
摘要:上周接到个需求,需求是这样的:用户扫一扫二维码会产生一个链接,该链接会向后端发送个请求,返回一个 apk 的下载地址,用户点击下载按钮可以下载此 apk。然后就发生了问题,经过测试,发现用微信扫一扫打开的页面点击下载按钮下载不了 apk,后百度之,原来是微信内置浏览器屏蔽了下载链接,后面和需求方沟通 阅读全文

posted @ 2016-11-30 09:08 一个大西瓜咚咚咚 阅读(359) 评论(0) 推荐(0) 编辑

Cookie登录保存
摘要:Login.aspx Login.aspx.cs 阅读全文

posted @ 2016-11-26 20:04 一个大西瓜咚咚咚 阅读(308) 评论(0) 推荐(0) 编辑

分页公共类
摘要:PageBarHelper 页面引入样式pageBarStyle.css 后台代码 DAL层代码 BLL层代码 Model层 aspx页面部分,两种不同分页方式 阅读全文

posted @ 2016-11-26 11:27 一个大西瓜咚咚咚 阅读(589) 评论(0) 推荐(0) 编辑

Jquery和JS删除提示
摘要:Jquery Js 阅读全文

posted @ 2016-11-25 14:25 一个大西瓜咚咚咚 阅读(302) 评论(0) 推荐(0) 编辑

Common工具类的验证码类的使用(未实现验证)
摘要:验证码接收 登录页面(实现验证码点击替换) 阅读全文

posted @ 2016-11-25 11:57 一个大西瓜咚咚咚 阅读(534) 评论(0) 推荐(0) 编辑

验证码生成
摘要:HttpContext需要添加引用system.web 阅读全文

posted @ 2016-11-25 10:45 一个大西瓜咚咚咚 阅读(410) 评论(0) 推荐(0) 编辑

图片处理公共类
摘要:using System; using System.Collections; using System.IO; using System.Drawing; using System.Drawing.Imaging; using System.Drawing.Drawing2D; namespace CZBK.ItcastProject.Common { public class Im... 阅读全文

posted @ 2016-11-25 10:26 一个大西瓜咚咚咚 阅读(257) 评论(0) 推荐(0) 编辑

一般处理程序上传图片压缩图片大小
摘要:using System; using System.Collections.Generic; using System.Linq; using System.Web; using System.IO; using System.Drawing; namespace CZBK.ItcastProject.WebApp._2015_5_29 { /// /// Thumb 的摘... 阅读全文

posted @ 2016-11-24 23:35 一个大西瓜咚咚咚 阅读(491) 评论(0) 推荐(0) 编辑

一般处理程序上传图片打水印
摘要:using System; using System.Collections.Generic; using System.Linq; using System.Web; using System.IO; using System.Drawing; namespace CZBK.ItcastProject.WebApp._2015_5_27 { /// /// ProcessF... 阅读全文

posted @ 2016-11-24 20:36 一个大西瓜咚咚咚 阅读(758) 评论(0) 推荐(0) 编辑

一般处理程序画图打水印
摘要:using System; using System.Collections.Generic; using System.Linq; using System.Web; using System.Drawing; namespace CZBK.ItcastProject.WebApp._2015_5_27 { /// /// MakeImage 的摘要说明 /// ... 阅读全文

posted @ 2016-11-24 19:27 一个大西瓜咚咚咚 阅读(258) 评论(0) 推荐(0) 编辑

一般处理程序进行上传(修改后,中级版)
摘要:using System; using System.Collections.Generic; using System.Linq; using System.Web; using System.IO; namespace CZBK.ItcastProject.WebApp._2015_5_27... 阅读全文

posted @ 2016-11-24 18:58 一个大西瓜咚咚咚 阅读(320) 评论(0) 推荐(0) 编辑

一般处理程序进行上传(修改前,简版)
摘要:using System; using System.Collections.Generic; using System.Linq; using System.Web; using System.IO; namespace CZBK.ItcastProject.WebApp._2015_5_27 { ... 阅读全文

posted @ 2016-11-24 18:11 一个大西瓜咚咚咚 阅读(367) 评论(0) 推荐(0) 编辑

一般处理程序读取模板文件
摘要:<!DOCTYPE html> <html xmlns="http://www.w3.org/1999/xhtml"> <head> <meta http-equiv="Content-Type" content="text/html; charset=utf-8"/> <title></title 阅读全文

posted @ 2016-11-23 13:11 一个大西瓜咚咚咚 阅读(410) 评论(0) 推荐(0) 编辑

加解密封装
摘要:using System;using System.Collections.Generic;using System.IO;using System.Linq;using System.Security.Cryptography;using System.Text;using System.Thre 阅读全文

posted @ 2016-11-22 10:40 一个大西瓜咚咚咚 阅读(348) 评论(0) 推荐(0) 编辑

MD5加密
摘要:using System;using System.Collections.Generic;using System.Linq;using System.Security.Cryptography;using System.Text;using System.Threading.Tasks;name 阅读全文

posted @ 2016-11-18 16:52 一个大西瓜咚咚咚 阅读(229) 评论(0) 推荐(0) 编辑

标签页导航
摘要:一带一路 互联网+ 亚投行 京津冀一体化 阅读全文

posted @ 2016-11-13 18:52 一个大西瓜咚咚咚 阅读(259) 评论(0) 推荐(0) 编辑

纯jq编写增删改,弹出框
摘要:<!DOCTYPE html><html xmlns="http://www.w3.org/1999/xhtml"><head> <meta http-equiv="Content-Type" content="text/html; charset=utf-8" /> <title></title> 阅读全文

posted @ 2016-11-12 16:23 一个大西瓜咚咚咚 阅读(547) 评论(0) 推荐(1) 编辑

li颜色特效
摘要:<!DOCTYPE html><html xmlns="http://www.w3.org/1999/xhtml"><head> <meta http-equiv="Content-Type" content="text/html; charset=utf-8" /> <title></title> 阅读全文

posted @ 2016-11-10 14:17 一个大西瓜咚咚咚 阅读(348) 评论(0) 推荐(0) 编辑

省市联动Demo
摘要:<!DOCTYPE html><html xmlns="http://www.w3.org/1999/xhtml"><head><meta http-equiv="Content-Type" content="text/html; charset=utf-8"/> <title></title> < 阅读全文

posted @ 2016-11-10 10:37 一个大西瓜咚咚咚 阅读(224) 评论(0) 推荐(0) 编辑

button轮番点击,只点击一次,鼠标hover
摘要:<!DOCTYPE html><html xmlns="http://www.w3.org/1999/xhtml"><head><meta http-equiv="Content-Type" content="text/html; charset=utf-8"/> <title></title> < 阅读全文

posted @ 2016-11-09 16:21 一个大西瓜咚咚咚 阅读(243) 评论(0) 推荐(0) 编辑

正则--密码强度验证
摘要:<!DOCTYPE html><html xmlns="http://www.w3.org/1999/xhtml"><head><meta http-equiv="Content-Type" content="text/html; charset=utf-8"/> <title></title> < 阅读全文

posted @ 2016-11-09 14:24 一个大西瓜咚咚咚 阅读(369) 评论(0) 推荐(0) 编辑

正则--验证邮箱与手机号
摘要:<!DOCTYPE html><html xmlns="http://www.w3.org/1999/xhtml"><head><meta http-equiv="Content-Type" content="text/html; charset=utf-8"/> <title></title> < 阅读全文

posted @ 2016-11-09 13:54 一个大西瓜咚咚咚 阅读(331) 评论(0) 推荐(0) 编辑

正则表达式--元字符
摘要:\ 表示转义字符. 表示一个任意字符*+? 表示字符个数{n,m} 表示字符个数^$ 表示开始与结束[^] 表示非\d 表示1个数字\w 表示一个字符(不包含中文)\s 表示一个空白字符 () 表示优先级,提取组| 表示或 阅读全文

posted @ 2016-11-09 13:53 一个大西瓜咚咚咚 阅读(161) 评论(0) 推荐(0) 编辑

button倒计时可点击
摘要: 阅读全文

posted @ 2016-11-08 14:14 一个大西瓜咚咚咚 阅读(184) 评论(0) 推荐(0) 编辑

C#电脑自动关机代码指令
摘要:Process p = new Process();//实例化一个独立进程 p.StartInfo.FileName = "cmd.exe";//进程打开的文件为Cmd p.StartInfo.UseShellExecute = false;//是否启动系统外壳选否 p.StartInfo.Redi 阅读全文

posted @ 2016-11-08 11:43 一个大西瓜咚咚咚 阅读(3552) 评论(0) 推荐(0) 编辑

好用的图表插件
摘要:highchart echart D3 阅读全文

posted @ 2016-11-07 17:12 一个大西瓜咚咚咚 阅读(209) 评论(0) 推荐(0) 编辑

jquery的datepicker汉化
摘要:$("#date").datepicker({ dateFormat: "yy-mm-dd", monthNames:["1月", "2月", "3月", "4月", "5月", "6月", "7月", "8月", "9月", "10月", "11月", "12月"], dayNamesMin:[' 阅读全文

posted @ 2016-11-03 14:14 一个大西瓜咚咚咚 阅读(591) 评论(0) 推荐(0) 编辑

导航

< 2025年3月 >
23 24 25 26 27 28 1
2 3 4 5 6 7 8
9 10 11 12 13 14 15
16 17 18 19 20 21 22
23 24 25 26 27 28 29
30 31 1 2 3 4 5
点击右上角即可分享
微信分享提示