I have already search box in my website but I need to allow the mistake spelling to search like this: if one person write (pineapel) it means (pineapple). I want him to find the (pineapple) in the data base
any help? thank you in advance
this code works to find word in sentence in table sqlserver:
SqlDataSourceArticles.SelectCommand = "SELECT [id], [articleid], [title], [description], [imageurl], [date], [type] FROM [articles] WHERE ([title] LIKE '%' + @title + '%') ORDER BY [imageurl] DESC"
Note: @title is the session from the text box to the search page result