posted @ 2010-07-01 13:30 kingwangzhen 阅读(331) 评论(0) 推荐(0) 编辑
摘要:
http://www.cnblogs.com/love2wllw/archive/2010/04/05/1704551.html 阅读全文
摘要:
/*经测试,在 14483461 条记录中查询第 100000 页,每页 10 条记录按升序和降序第一次时间均为 0.47 秒,第二次时间均为 0.43 秒,测试语法如下:exec GetRecordFromPage news,newsid,10,100000news 为 表名, newsid 为关键字段, 使用时请先对 newsid 建立索引。*//* 函数名称: GetRecordFromPa... 阅读全文
posted @ 2010-06-27 22:11 kingwangzhen 阅读(163) 评论(0) 推荐(0) 编辑
摘要:
http://msdn.microsoft.com/zh-cn/library/3dasc8as(VS.80).aspx 阅读全文
posted @ 2010-06-20 19:01 kingwangzhen 阅读(205) 评论(0) 推荐(0) 编辑
摘要:
http://msdn.microsoft.com/zh-cn/library/system.threading.manualresetevent(VS.80).aspx 阅读全文
posted @ 2010-06-20 19:00 kingwangzhen 阅读(234) 评论(0) 推荐(0) 编辑
摘要:
在.Net多线程编程中,AutoResetEvent和ManualResetEvent这两个类经常用到, 他们的用法很类似,但也有区别。Set方法将信号置为发送状态,Reset方法将信号置为不发送状态,WaitOne等待信号的发送。可以通过构造函数的参数值来决定其初始状态,若为true则非阻塞状态,为false为阻塞状态。如果某个线程调用WaitOne方法,则当信号处于发送状态时,该线程会得到信号... 阅读全文
posted @ 2010-06-20 18:58 kingwangzhen 阅读(351) 评论(0) 推荐(0) 编辑
摘要:
Page.Response.Write("response Test;"); Page.RegisterStartupScript("RegisterStartupScript","RegisterStartupScript Test;"); Page.RegisterClientScriptBlock("RegisterClientScriptBlock","RegisterClientScri... 阅读全文
posted @ 2010-06-11 16:04 kingwangzhen 阅读(170) 评论(0) 推荐(0) 编辑
摘要:
ClientScript.RegisterStartupScript(this.GetType(), "onclick", "<script language=javascript>window.open('Print.aspx','PrintMe','height=300px,width=300px,scrollbars=1');</script>"); 阅读全文
posted @ 2010-06-11 15:57 kingwangzhen 阅读(210) 评论(0) 推荐(0) 编辑