程序師世界是廣大編程愛好者互助、分享、學習的平台,程序師世界有你更精彩!
首頁
編程語言
C語言|JAVA編程
Python編程
網頁編程
ASP編程|PHP編程
JSP編程
數據庫知識
MYSQL數據庫|SqlServer數據庫
Oracle數據庫|DB2數據庫
 程式師世界 >> 編程語言 >> .NET網頁編程 >> .NET實例教程 >> 索引服務調用代碼(C#)

索引服務調用代碼(C#)

編輯:.NET實例教程
private void Button1_Click(object sender, System.EventArgs e)

{

// Catalog Name

string strCatalog = "TestCatalog";

string strQuery="";



strQuery = "Select DocTitle,Filename,Size,PATH,URL from Scope() where FREETEXT('" +TextBox1.Text+ "')";

// TextBox1.Text is the Word that you type in the text box to query by using Indexing Service.



string connstring = "Provider=MSIDXS.1;Integrated Security .='';Data Source="+strCatalog;



System.Data.OleDb.OleDbConnection conn = new System.Data.OleDb.OleDbConnection(connstring);

conn.Open();



System.Data.OleDb.OleDbDataAdapter cmd = new System.Data.OleDb.OleDbDataAdapter(strQuery, conn);



System.Data.DataSet testDataSet = new System.Data.DataSet();



cmd.Fill(testDataSet, "SearchResults");

DataView source = new DataVIEw(testDataSet.Tables[0]);

DataGrid1.DataSource = source;

DataGrid1.DataBind();

}
  1. 上一頁:
  2. 下一頁:
Copyright © 程式師世界 All Rights Reserved