http://www.iloveyou10000.com

新blogs地址 http://itares.cnblogs.com

博客园 首页 新随笔 联系 订阅 管理
上一页 1 ··· 9 10 11 12 13

2006年5月25日 #

摘要: 2005.10.28 来自:MSDN Karl Seguin Asynchronous JavaScript and XML(AJAX)最近掀起的高潮,要完全归功于Google在Google Suggest和Google Maps中的使用。对ASP.NET而言,AJAX不需要回传就能进行服务器端处理,从而使客户机(浏览器)具有丰富的服务器端能力。换句话说,它为异步... 阅读全文
posted @ 2006-05-25 14:17 fanrsh 阅读(976) 评论(0) 推荐(0) 编辑

2006年5月24日 #

摘要: using System;using System.Web;using System.Web.SessionState;namespace httpmodulename{ public class Moduleclass : IHttpModule { public void Init(HttpApplication application) { 注:asp.net开始执行ht... 阅读全文
posted @ 2006-05-24 16:27 fanrsh 阅读(1876) 评论(5) 推荐(0) 编辑

2006年5月22日 #

摘要: 只能输入数字:"^[0-9]*$"。只能输入n位的数字:"^\d{n}$"。只能输入至少n位的数字:"^\d{n,}$"。只能输入m~n位的数字:。"^\d{m,n}$"只能输入零和非零开头的数字:"^(0|[1-9][0-9]*)$"。只能输入有两位小数的正实数:"^[0-9]+(.[0-9]{2})?$"。只能输入有1~3位小数的正实数:"^[0-9]+(.[0-9]{1,3})?$"。只能输... 阅读全文
posted @ 2006-05-22 10:11 fanrsh 阅读(435) 评论(0) 推荐(0) 编辑

2006年5月20日 #

摘要: 1、创建一个txt文件2、将扩展名改为.udl 。(Universal Data Link )3、双击这个改名后的文件,会出现一个连接配置向导4、选择provide,以及其他参数5、测试连接成功6、确认用notepad 打开这个文件这时候就可以看到自动生成的connect string了(FROM https://dream4ever.org/) 阅读全文
posted @ 2006-05-20 16:52 fanrsh 阅读(239) 评论(0) 推荐(0) 编辑

摘要: 我写了一段代码如下:(注:数据库是access) 1:select top 1 * from a where IsPop=false (用户X获取一条IsPop为false的内容);2:............执行一些其它的操作(时间较长) 3:update a set ispop = true from (select top 1 * from a where IsPop=false ) as... 阅读全文
posted @ 2006-05-20 13:58 fanrsh 阅读(628) 评论(2) 推荐(0) 编辑

2005年11月19日 #

摘要: 写这篇文章并不是要告诉垃圾广告商可以尽情弹出广告或者后台隐藏弹出窗口,而是提醒大家IE内核还有一些冬冬可以绕过大多数以IE为内核的浏览器的广告屏蔽功能,甚至绕开这些浏览器本身,直接弹出一个真正的Internet Explorer窗口。当然并不是全部,有的还是做的比较好的,如Maxthon,尽管新窗口打开了,但是仍然存在于Maxthon之中,而不会砰地弹出一个IE在后台放着,但是TT、The Wor... 阅读全文
posted @ 2005-11-19 13:13 fanrsh 阅读(1578) 评论(0) 推荐(0) 编辑

2005年11月5日 #

摘要: using System; using System.Management; namespace ZZ.Wmi { public class Win32ServiceManager { private string strPath; private ManagementClass managementClass; publi... 阅读全文
posted @ 2005-11-05 15:50 fanrsh 阅读(2637) 评论(0) 推荐(0) 编辑

上一页 1 ··· 9 10 11 12 13