I have a (Sql Server 2008) table called Courses with course_id,course_name and course_description as its fields
In the front end, I have a text box and a search button. In the text box, when I give a course name (even a part of it)..in the button click event, all the course names should show up.
How do I code this in C#? Any help would be appreciated..
you can select from sql table with where statement
eg, “whre course_name = ‘a‘”
a means it will return all course name with a character a
for eg, matehmatics
can search for details about * thing in google.