03 2007 档案

摘要:<script>//全选functionallCheck(){for(vari=0;i<Form1.elements.length;i++){vare=Form1.elements[i];if(e.type=='checkbox')e.checked=true;}}//反选functionrevCheck(){for(vari=0;i<Form1.elements.leng... 阅读全文
posted @ 2007-03-27 11:34 Kangaroo 阅读(364) 评论(0) 推荐(0)
摘要:语法SET XACT_ABORT { ON | OFF }注释当 SET XACT_ABORT 为 ON 时,如果 Transact-SQL 语句产生运行时错误,整个事务将终止并回滚。为 OFF 时,只回滚产生错误的 Transact-SQL 语句,而事务将继续进行处理。编译错误(如语法错误)不受 SET XACT_ABORT 的影响。对于大多数 OLE DB 提供程序(包括 SQL Server... 阅读全文
posted @ 2007-03-19 16:57 Kangaroo 阅读(1153) 评论(0) 推荐(0)
摘要:1//下面的示例写出所有命名的服务器变量的名称和值。2intloop1,loop2;3NameValueCollectioncoll;45//LoadServerVariablecollectionintoNameValueCollectionobject.6coll=Request.ServerVariables;7//Getnamesofallkeysintoastringarray.8Str... 阅读全文
posted @ 2007-03-09 09:00 Kangaroo 阅读(476) 评论(0) 推荐(0)