zlb

上一页 1 ··· 10 11 12 13 14 15 16 17 18 ··· 21 下一页

2012年12月31日

Adblock Plus使用方法

摘要: 安装Adblock Plus 插件打开Adblock Plus Optionsfilter lists中添加Please choose a filter subscription from the list:选择EasyList 和ChinaList+EasyList就可以去除页面广告 阅读全文

posted @ 2012-12-31 19:35 zlb 阅读(804) 评论(0) 推荐(0) 编辑

2012年11月28日

asp.net mvc jquery json 传递复杂参数

摘要: js中区分大小写; model类 public class Student { public string name { get; set; } public int id { get; set; } public string gender { get; set; } public int age { get; set; } ... 阅读全文

posted @ 2012-11-28 17:46 zlb 阅读(580) 评论(0) 推荐(0) 编辑

asp.net mvc web api 参数输入多个参数

摘要: 部分代码 apicontrol中 public class StudentController : ApiController { public HttpResponseMessage PostStudentsByReq(StudentReq studentReq, string criteria) { var students = studentRepository.GetAll().Where... 阅读全文

posted @ 2012-11-28 11:09 zlb 阅读(891) 评论(0) 推荐(0) 编辑

2012年9月16日

WPF程序只有一个实例运行

摘要: WPF程序只运行一个实例; 下面的代码还 尝试,如果窗体最小化的时候,让窗体还原 public partial class App : Application { private static Semaphore singleInstanceWatcher; private static bool createdNew; static App() ... 阅读全文

posted @ 2012-09-16 14:16 zlb 阅读(2523) 评论(0) 推荐(1) 编辑

2012年8月13日

c#2010连接access2010

摘要: 错误提示Microsoft.ACE.OLEDB.12.0没有在本机注册环境 win2008R2 64位 access2010 32位 vs2010把vs程序的目标平台改为x86 而不是任意平台安装AccessDatabaseEngine2010Chs.exe 驱动程序32位。 阅读全文

posted @ 2012-08-13 19:24 zlb 阅读(409) 评论(0) 推荐(0) 编辑

2012年8月6日

常用正则表达式

摘要: 只能输入数字:”^[0-9]*$”。只能输入n位的数字:”^\d{n}$”。只能输入至少n位的数字:”^\d{n,}$”。只能输入m~n位的数字:。”^\d{m,n}$”只能输入零和非零开头的数字:”^(0|[1-9][0-9]*)$”。只能输入有两位小数的正实数:”^[0-9]+(.[0-9]{2})?$”。只能输入有1~3位小数的正实数:”^[0-9]+(.[0-9]{1,3})?$”。只能输入非零的正整数:”^\+?[1-9][0-9]*$”。只能输入非零的负整数:”^\-[1-9][]0-9″*$。只能输入长度为3的字符:”^.{3}$”。只能输入由26个英文字母组成的字符串:”^[A 阅读全文

posted @ 2012-08-06 18:56 zlb 阅读(302) 评论(0) 推荐(0) 编辑

2012年8月2日

修改CSS-margin属性打造DIV+CSS自适应布局

摘要: 使用负margin可以使当前的div左边能容纳下面的div浮动上来,因此把右边的div摆在前面,左边的摆后面,右边的使用负margin就能让左边的浮上来,这样就遮住了右边的左半部分,只要右边再内部使用一个div,外边距为左边的宽度就实现了左右的排版。 1、左边固定,右边自适应 <div><div style="float: right; margin: 0 0 0 -200px; width: 100%;"><div style="margin: 0 0 0 200px; background: #e4e4e4;">这 阅读全文

posted @ 2012-08-02 16:02 zlb 阅读(410) 评论(0) 推荐(0) 编辑

2012年7月29日

卡巴斯基 安装在server 2008系统

摘要: 准备工具 1、Orca Orca 是一款由微软提供的用于 Windows Installer 数据库表编辑器。可用来编辑 Windows Installer 数据库文件 (.msi) 文件,合并模块 (.msm) 文件,补丁 (.msp) 文件,内部一致性计算程序 (.cub) 文件和补丁创建属性 (.pcp) 文件。是修改和本地化 Windows Installer 数据库的最佳辅助工具。 2、7-Zip 是一款拥有极高压缩比的开源压缩软件。 下载地址http://sparanoid.com/lab/7z/ 3、下载kav2012 http://www.kaspersky.com.cn... 阅读全文

posted @ 2012-07-29 21:48 zlb 阅读(629) 评论(0) 推荐(0) 编辑

2012年6月28日

配置mysql-5.7.18-winx64(免安装版)配置

摘要: 今天在操作系统是 winServer2016 下配置mysql-5.7.18-winx64 (免安装版), 首先,将mysql-5.7.18-winx64.zip 解压缩到D:/mysql-5.7.18-winx64 目录下,然后根据网上相关资料,将my-large.ini(当然也可以视情况选择别的 阅读全文

posted @ 2012-06-28 16:46 zlb 阅读(1652) 评论(0) 推荐(0) 编辑

2012年4月28日

vs2010 崩溃 Exception code: 0xe0434352

摘要: vs2010 sp1, 安装silverlight5 后 xaml设计界面打开 点击debug 后,崩溃 重启, 查看windows错误日志 Faulting application name: devenv.exe, version: 10.0.40219.1, time stamp: 0x4d5f2a73Faulting module name: KERNELBASE.dll, version: 6.1.7600.16385, time stamp: 0x4a5bdbdfException code: 0xe0434352Fault offset: 0x0000b727Faulting . 阅读全文

posted @ 2012-04-28 09:19 zlb 阅读(2476) 评论(0) 推荐(0) 编辑

上一页 1 ··· 10 11 12 13 14 15 16 17 18 ··· 21 下一页

导航