2011年4月18日
摘要: 1.验证用户名和密码:("^[a-zA-Z]\w{5,15}$")正确格式:"[A-Z][a-z]_[0-9]"组成,并且第一个字必须为字母6~16位; 2.验证电话号码:("^(\d{3.4}-)\d{7,8}$")正确格式:xxx/xxxx-xxxxxxx/xxxxxxxx; 3.验证身份证号(15位或18位数字):("^\d{15}|\d{18}$"); 4.验证Email地址:("^\w+([-+.]\w+)*@\w+([-.]\w+)*\.\w+([-.]\w+)*$"); 5.只能输 阅读全文
posted @ 2011-04-18 10:31 轻盈 阅读(167) 评论(0) 推荐(0) 编辑
  2011年4月15日
摘要: js代码:jQuery(document).ready( function() { var pagecount = 0; //总共多少页 var AllCount = 0; //总共几行 var page = 1; //第几页 var pageData = 10; //一页多少行 jQuery.post("PMSysHandler.ashx", { "Action": "getPageCount" }, function(pageAllCount, status) { AllCount = pageAllCount; pagecoun 阅读全文
posted @ 2011-04-15 10:40 轻盈 阅读(5192) 评论(0) 推荐(0) 编辑
  2011年4月11日
摘要: <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"><html xmlns="http://www.w3.org/1999/xhtml"><head><meta http-equiv="Content-Type" content="text/html; charset=utf- 阅读全文
posted @ 2011-04-11 17:56 轻盈 阅读(177) 评论(0) 推荐(0) 编辑
  2011年4月10日
摘要: <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"><html xmlns="http://www.w3.org/1999/xhtml"><head><meta http-equiv="Content-Type" content="text/html; charset=utf- 阅读全文
posted @ 2011-04-10 15:15 轻盈 阅读(485) 评论(0) 推荐(0) 编辑
摘要: <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"><html xmlns="http://www.w3.org/1999/xhtml"><head><meta http-equiv="Content-Type" content="text/html; charset=utf- 阅读全文
posted @ 2011-04-10 13:47 轻盈 阅读(244) 评论(0) 推荐(0) 编辑
  2011年4月9日
摘要: <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"><html xmlns="http://www.w3.org/1999/xhtml"><head><meta http-equiv="Content-Type" content="text/html; charset=utf- 阅读全文
posted @ 2011-04-09 17:14 轻盈 阅读(160) 评论(0) 推荐(0) 编辑
摘要: <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"><html xmlns="http://www.w3.org/1999/xhtml"><head><meta http-equiv="Content-Type" content="text/html; charset=utf- 阅读全文
posted @ 2011-04-09 17:12 轻盈 阅读(908) 评论(0) 推荐(0) 编辑
  2011年4月8日
摘要: 阅读全文
posted @ 2011-04-08 11:51 轻盈 阅读(110) 评论(0) 推荐(0) 编辑
  2011年4月6日
摘要: 1.获取Return返回值程序代码//存储过程//Create PROCEDURE MYSQL// @a int,// @b int//AS// return @a + @b//GOSqlConnection conn = new SqlConnection(ConfigurationManager.ConnectionStrings["LocalSqlServer"].ToString());conn.Open();SqlCommand MyCommand = new SqlCommand("MYSQL", conn);MyCommand.Comman 阅读全文
posted @ 2011-04-06 16:21 轻盈 阅读(4833) 评论(0) 推荐(0) 编辑