Search Functionality in C# .net2.0.
-
Hi all, can any one guide me on ways to implement the this feature. In textbox when ever we type some characters , all the entries mathcing to the entered charcters(from database) appear below the text box and user can select ne of the given entry. :confused:
-
Hi all, can any one guide me on ways to implement the this feature. In textbox when ever we type some characters , all the entries mathcing to the entered charcters(from database) appear below the text box and user can select ne of the given entry. :confused:
Every string has an IndexOf method to find index of a particular word or character. So you can search for index of a string in a text box like this – textBox1.Text.IndexOf("FindThisWord", 0); -Dave.
------------------------------------ http://www.componentone.com ------------------------------------