01 2016 档案
通用easyui查询页面组件
摘要:easyui查询页面组件使用指南 本组件开发需求:信息系统的查询页面基本是包括:搜索区域,列表显示区域,按钮条。 1.录入一个查询语句(如:select * from Strudents),录入列表显示参数:如一页最大记录条数,需求的按钮:添加,删除,修改等。 2..根据录入的查询语句生成列头。 3 阅读全文
posted @ 2016-01-28 14:16 wolf12 阅读(892) 评论(0) 推荐(0)
easyui validatebox 验证
摘要:required: "必选字段", remote: "请修正该字段", email: "请输入正确格式的电子邮件", url: "请输入合法的网址", date: "请输入合法的日期", dateISO: "请输入合法的日期 (ISO).", number: "请输入合法的数字", digits: 阅读全文
posted @ 2016-01-26 12:27 wolf12 阅读(198) 评论(0) 推荐(0)
sql 指定值排序
摘要:--SELECT [ButtonName] as text,[FunctionName] as handler,[iconCls] --FROM [ButtonTable] where PKID in ('50350C99-12DC-48BD-8D62-9A1D42095A1C','D596EE3A 阅读全文
posted @ 2016-01-25 14:31 wolf12 阅读(327) 评论(0) 推荐(0)
C# 模拟登陆并继续访问其他页面
摘要:using System;using System.Collections.Generic;using System.IO;using System.Linq;using System.Net;using System.Text;using System.Threading; namespace C 阅读全文
posted @ 2016-01-20 22:26 wolf12 阅读(1914) 评论(1) 推荐(0)
IIS理解
摘要:WEB开发基础 1IIS原理 IIS的本质其实就是一个sorket的服务器,浏览器就是一个sorket的客户端,浏览器发送请求信息给IIS,IIS返回信息给浏览器显示,就这么简单。 1http.sys,这个是上个IIS6里的一个模块,主要作用是用来接受浏览器发送过来的请求。用要用一个队列来管理发送过 阅读全文
posted @ 2016-01-19 21:12 wolf12 阅读(568) 评论(0) 推荐(1)
string.join加引号
摘要:columnsGen = string.Join(",", modelDictionary.Keys); valueGen = modelDictionary.Values.Aggregate(valueGen, (current, i) => current + ("'" + i + "',")) 阅读全文
posted @ 2016-01-06 18:10 wolf12 阅读(2300) 评论(0) 推荐(0)