10 2010 档案

摘要:写一个公用的JS函数function GridViewColor(GridViewId) { //获取所有要控制的行 var AllRows = document.getElementById(GridViewId); if (AllRows != null) { AllRows = AllRows.getElementsByTagName("tr"); //设置每一行的背景色和事件,循环从1开始... 阅读全文
posted @ 2010-10-29 09:38 Yao,Mane 阅读(274) 评论(0) 推荐(0)
摘要:using System;using System.Collections.Generic;using System.Text;using System.Data.OleDb;//using System.Data;//using System.IO;//using System.Collections;//namespace ISEX.NET{/// <summary> /// 二进... 阅读全文
posted @ 2010-10-27 14:20 Yao,Mane 阅读(341) 评论(0) 推荐(0)
摘要:用户名 [\w\-]{3,12} 3-12个字符(包括英文字母、数字、'-'、'_')密码 [\x21-\x7E]{3,8} 3-8个常用字符(0x21到0x7E)年龄 1[0-2]\d|\d{1,2} 最大129岁日期 (19|20)\d{2}[/\s\-\.]*(0[1-9]|1[0-2]|[1-9])[/\s\-\.]*(0[1-9]|3[01]|[12][0-9]|[1-9]) 不含时间的日期,没有处理2月29日的情况(19|20)\d{2}[/\s\-\.]*(0[1-9]|1[0-2]|[1-9])[/\s\-\.]*(0[1-9]|3[01]|[12][0-9]|[1-9])([ 阅读全文
posted @ 2010-10-27 11:14 Yao,Mane 阅读(541) 评论(1) 推荐(1)
摘要:下载地址: 【多特网下载】【本地下载1】 【本地下载2】1.主页2.周期计算法3.基础体温法4.历史记录5.设置皮肤6.设置语言软件界面:Copyright © 2008-2010 Manesoft All Rights Reserved 版权所有 | 姚广满 阅读全文
posted @ 2010-10-21 10:43 Yao,Mane 阅读(1284) 评论(12) 推荐(1)
摘要:public static void SendEmail() { System.Net.Mail.SmtpClient client = new System.Net.Mail.SmtpClient();//这里使用QQ的邮箱来发送测试,如果是其它邮箱,请根据其它邮箱POP3/IMAP/SMTP服务来设置 client.Host = "smtp.qq.com"; client.UseDefault... 阅读全文
posted @ 2010-10-11 08:30 Yao,Mane 阅读(261) 评论(0) 推荐(0)