摘要:
代码Code highlighting produced by Actipro CodeHighlighter (freeware)http://www.CodeHighlighter.com/----创建测试的数据库CREATEDATABASEdbGOUSEdb--创建测试的表CREATETABLEtb(idintIDENTITY,colntext,CONSTRAINTPK_tbPRIMARYKEY(id))INSERTtbSELECTN'若无其事咬牙切齿'UNIONALLSELECTN'车水马龙abcd因小而失大'GO--初始化全文索引EXECsp_fulltext_database'e 阅读全文
posted @ 2010-03-04 14:20
峡谷少爷
阅读(382)
评论(0)
推荐(0)
摘要:
日志备份和差异备份还原中的常见问题示例代码Code highlighting produced by Actipro CodeHighlighter (freeware)http://www.CodeHighlighter.com/--> 1 --创建测试 2 CREATE DATABASE db 3 GO 4 5 --正常备份 6 BACKUP DATABASE db TO DISK='c:\... 阅读全文
posted @ 2010-03-04 14:16
峡谷少爷
阅读(1016)
评论(0)
推荐(0)
摘要:
C#代码foreach( Control childControl in this.Controls ) { if( childControl is TextBox ){ ((TextBox)childControl).Text = ""; } }Js代码function ClearAllTextBox() { var obj=window.document.forms[0]; for(i=0;i... 阅读全文
posted @ 2010-03-04 14:12
峡谷少爷
阅读(977)
评论(0)
推荐(0)