Click here to Skip to main content
15,998,100 members
Please Sign up or sign in to vote.
1.44/5 (2 votes)
See more:
How can we use sql full text search in ASP.NET
Posted
Updated 15-Feb-11 0:25am
v2

It's not related to ASP.NET in particular. SQL Full text search is done to make quick search when needed directly or via any application(web or windows).

Read about it here: http://msdn.microsoft.com/en-us/library/ms142571.aspx[^]
 
Share this answer
 
if you mean you want to search from the text then the answer is:
string sql = "SELECT * FROM TABLE WHERE column LIKE '%passParamHere%'"
sqlCommand command = new SqlCommand(sql,connectionString);
 
Share this answer
 

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900