摘要:来源:http://www.popub.net/script/PCAS.html=======================================================PCAS (Province City Area Selector 省、市、地区联动选择JS封装类)演示地址:http://www.popub.net/script/PCAS.html下载地址:http://www.popub.net/script/PCASClass.js应用说明:页面包含<script type="text/javascript" src="PCASC
阅读全文
07 2010 档案
摘要:select * from testid title----------- ------------------------------------1 20D32B5D-082C-47F1-9B84-FDD6F28700DC3 7662E2C4-5F3D-4425-91D1-DBAEEC70C02B5 F84E1617-D719-49DA-91F8-55DC76B66D2F6 53B15573-FD6D-46E5-A32C-BE8041E475D48 7D42962D-365F-419A-B026-4A62440A3B439 1A44340F-B78C-446E-A4D6-661EBA663E
阅读全文
摘要:来源:http://www.cainiao8.com/web/js_note/js_regular_expression_blueidea.html目录 1. 正则表达式实战...1 2. 匹配结尾的数字...2 3. 统一空格个数...3 4. 判断字符串是不是由数字组成...3 5. 电话号码正则...3 6. 手机号码正则表达式...4 7. 使用正则表达式实现删除字符串中的空格:...4 8. 限制文本框只能输入数字和小数点等等...5 9. 替换小数点前内容为指定内容...5 10. 只匹配中文的正则表达式...5 11. 返回字符串的中文字符个数...6 12. 正则表达式取得匹配
阅读全文
摘要:<html xmlns="http://www.w3.org/1999/xhtml"><head runat="server"> <title></title> <style type="text/css"> .content { border: 1px solid #ccc; width: 440px; overflow: hidden; margin: 10px; } </style> <script type="text/javascript
阅读全文
摘要:DataTable dt = GetTestData(10); //获取10条测试数据 var queryByService = from r in dt.AsEnumerable() group r by r.Field<string>(4) into g select new { Service = g.Key, Bookings = g.Count(p => p.Field<string>(1) != ""), ConfirmedBookings = g.Count(p => p.Field<string>(1) ==
阅读全文
摘要:<!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> <title>jQuery DOM</title> <script type="text/javascript"
阅读全文
摘要:参考了:http://www.cnblogs.com/xingshao/archive/2009/09/11/1564938.html改进的地方:1、ashx返回json数据,减少传输数据量,html页面样式控制也比较灵活;2、改写html页的jQuery代码;3、把3个ashx文件简化为1个。一、创建表的测试数据:create table test(id int identity,title varchar(36))declare @index int;set @index = 1;while(@index < 8888)begin insert test(title) values
阅读全文