2009年3月30日
摘要: CSS打印控制分页及隐藏页面部分区域. 看看 表头 第1页 这样的报表 对一般的要求就够了。 表头 第2页 看到分页了吧 这样的报表 对一般的要求就够了。 ... 阅读全文
posted @ 2009-03-30 11:28 雨季 阅读(1241) 评论(0) 推荐(0) 编辑
摘要: protected override void WndProc(ref Message m) { const int WM_NCLBUTTONDOWN = 161; const int WM_SYSCOMMAND = 274; const int HTCAPTION = 2; const... 阅读全文
posted @ 2009-03-30 11:27 雨季 阅读(837) 评论(0) 推荐(0) 编辑
摘要: 转自:凌晓web部落 1. 正则表达式规则 1.1 普通字符 字母、数字、汉字、下划线、以及后边章节中没有特殊定义的标点符号,都是"普通字符"。表达式中的普通字符,在匹配一个字符串的时候,匹配与之相同的一个字符。 举例1:表达式 "c",在匹配字符串 "abcde" 时,匹配结果是:成功;匹配到的内容是:"c";匹配到的位置是:开始于2,结束于3。(注:下标从0开始还是从1开始,... 阅读全文
posted @ 2009-03-30 11:26 雨季 阅读(379) 评论(0) 推荐(0) 编辑
摘要: 太原市地图 ... 阅读全文
posted @ 2009-03-30 11:24 雨季 阅读(490) 评论(0) 推荐(0) 编辑
摘要: --取得表主键 exec sp_pkeys 'Users','dbo','ArticleRelease' --取得表字段 select * from syscolumns where id = object_id('Users') --取得字段说明 SELECT * FROM ::fn_listextendedproperty (NULL, 'user', 'dbo', 'table', 'Use... 阅读全文
posted @ 2009-03-30 11:24 雨季 阅读(291) 评论(0) 推荐(0) 编辑
摘要: class Animal { public virtual void eat() { Console.WriteLine("Animal is eating..."); } } class Dog : Animal { public override void eat() { ... 阅读全文
posted @ 2009-03-30 11:23 雨季 阅读(296) 评论(0) 推荐(0) 编辑
摘要: 简单举例如下: 会员搜索过滤模块,要先按姓名搜索,再按编号过滤部分会员. 例子比较简单,按姓名搜索,过滤会员在.两功能上是独立的. 没有依赖性,不过实际中常用来功能有依赖性解决并行开发的. 例子中简单只有一个数据源.实际中常常是用来处理两个数据源. 第一个是作为输入的,第二个则是作为输出的. 谁有更好的理解和应用? using System; using System.Collections.... 阅读全文
posted @ 2009-03-30 11:22 雨季 阅读(774) 评论(0) 推荐(0) 编辑
摘要: 转自:http://hi.baidu.com/lhcling/blog/item/ac631c33aff6befb1a4cffdd.html clientX 设置或获取鼠标指针位置相对于窗口客户区域的 x 坐标,其中客户区域不包括窗口自身的控件和滚动条。 clientY 设置或获取鼠标指针位置相对于窗口客户区域的 y 坐标,其中客户区域不包括窗口自身的控件和滚动条。 offsetX 设置或获取... 阅读全文
posted @ 2009-03-30 11:21 雨季 阅读(769) 评论(0) 推荐(0) 编辑
摘要: 委托可以以松散的耦合性使两个对象相互调用. 应用中也就是A类干活.干到一半了,需要B类协助,然后继续执行. 利用委托使类干的活可以单一化.需要别的类配合时只需执行一 个委托.不必关心配合类是怎样工作的. 比如: A人要从停车厂开走车,开到大门时发现大门锁了,通知B人去开门. B人去开门并告知门A人已经打开了. 这时A人再开走车. A只管开车和说... 阅读全文
posted @ 2009-03-30 11:15 雨季 阅读(210) 评论(0) 推荐(0) 编辑
摘要: div水平垂直居中显示 绝对定位div,top和left设置为50%. margin-top为 1/2 * height;margin-left为 1/2 * width .center{ width:200px; height:150px; background-color:#0066CC; position:absolute;top:50%;left:50%; margin-top:... 阅读全文
posted @ 2009-03-30 10:41 雨季 阅读(202) 评论(0) 推荐(0) 编辑
摘要: 许多朋友在网站页面文件头部做了以下声明时,发现网站上的对联广告的滚动就不动了,其实是声明使 JS 中的 document.body.scrollTop 无效了。 转自:http://www.icdma.com.cn/blog/website/ad-js-scroll.html 也就是说网页做了以下声明: 这样广告图片的滚动就失效了。 原因就是声明后的 document.body.scro... 阅读全文
posted @ 2009-03-30 10:40 雨季 阅读(427) 评论(0) 推荐(0) 编辑
摘要: 阅读全文
posted @ 2009-03-30 10:39 雨季 阅读(647) 评论(0) 推荐(0) 编辑
摘要: using System; using System.Collections.Generic; using System.ComponentModel; using System.Text; using System.Web; using System.Web.UI; using System.Web.UI.WebControls; namespace CustomWebControl.PageN... 阅读全文
posted @ 2009-03-30 10:36 雨季 阅读(278) 评论(0) 推荐(0) 编辑
摘要: using System; using System.Collections.Generic; using System.ComponentModel; using System.Text; using System.Web; using System.Web.UI; using System.Web.UI.WebControls; namespace CustomWebControl.PageN... 阅读全文
posted @ 2009-03-30 10:34 雨季 阅读(323) 评论(0) 推荐(0) 编辑