07 2013 档案

摘要:--范例:--为HR_Job中的JobTitle,JobDes创建全文索引execute sp_fulltext_catalog 'boli188', 'create' --创建全文目录,boli188为目录名.create unique index JobId on HR_Job(JobId) --定义唯一的索引,必须是主键.JobId为HR_Job表主键.execute sp_fulltext_table 'HR_Job','create', 'boli188','JobId'--为Title列 阅读全文
posted @ 2013-07-20 22:45 岁过无痕 阅读(279) 评论(0) 推荐(0)
摘要:1 现在给大家讲讲在.Net中书信页面的几种方式: 2 第一: 3 private void Button1_Click( object sender, System.EventArgs e ) 4 { 5 Response.Redirect( Request.Url.ToString( ) ); 6 } 7 第二: 8 private void Button2_Click( object sender, System.EventArgs e ) 9 { 10 Response.Write( " 11 " ); 13 } 14 第三: 15 ... 阅读全文
posted @ 2013-07-12 10:17 岁过无痕 阅读(638) 评论(0) 推荐(0)