摘要:
The ASP Column: HTTP Modules 阅读全文
摘要:
*/ ---------------------------------------------- declare @ID nvarchar(20); --定义变量来保存ID号 declare @DATE DATETIME; DECLARE @DFD NVARCHAR(200); --定义变量来保存值 SET @DFD=''; declare mycursor cursor ... 阅读全文
摘要:
比如现在有一人员表 (表名:peosons) 若想将姓名、身份证号、住址这三个字段完全相同的记录查询出来 select p1.* from persons p1,persons p2 where p1.idp2.id and p1.cardid = p2.cardid and p1.pname = p2.pname and p... 阅读全文
摘要:
HttpRuntime.AppDomainAppVirtualPath : 项目虚拟路径 HttpRuntime.AppDomainAppPath : 项目物理路径 HttpRuntime.BinDirectory : BIN目录物理路径 HttpRuntime.ClrInstallDirectory : CLR安装路径(可以用来获取CLR版本号) 阅读全文
摘要:
真的是非常强大的工具,把它收入我的工具箱了! Page html代码: Untitled Page Page cs代码: using System; using System.Threading; using System.Security.Permissions; using... 阅读全文
摘要:
"Operation must use an updateable ",This error occus when I want to update excel using sql. I found many topics which are all about permisson. But my problem is quite different. If you cannot walk aro... 阅读全文
摘要:
Concurrency violation: the DeleteCommand affected 0,一个解决dataset并发删除冲突的方法 阅读全文
摘要:
无聊时候写了一个 下图是没有存储viewstate到数据库时 下图是存储到数据库时候,大家可以比较一下性能。 至于页面大小也就不说了,大家都知道如果用一些诸如gridview控件的时候viewstate会相当大的。 web.config里面有两个键值,可以设置来决定是否要存储到数据库或者压缩。 压缩方面还是用的SharpZipLib,一开始用里面的BZip,但是解压用Compres... 阅读全文
摘要:
When a request enter the pipeline, it's handled by an instance of the HttpApplication class. One of the first things HttpApplication does is create an instance of HttpContext and populate it. This con... 阅读全文
摘要:
firefox下如何实现window.event.clientX ff的事件传递 在IE中,event.clientX,event.clientY可以用,但是在FF中是不可以的,因为event在IE中是一个全局变量,在FF中是局部变量,所以在FF中使用event对象必须通过参数传递的方式把它传入过程中. Show function showad(e,id) { var ... 阅读全文