Link for code samples used in the demo http://csharp-video-tutorials.blogspo... Link for csharp, asp.net, ado.net, dotnet basics, mvc and sql server video tutorial playlists http://www.youtube.com/user/kudvenkat... In this video, we will discuss, implementing search page in an asp.net mvc application. We should be able to search by Employee Name and Gender. We will be using table tblEmployee for this demo. Use the script below to create and populate the table with sample data. Create table tblEmployee ( ID int identity primary key, Name nvarchar(50), Gender nvarchar(10), Email nvarchar(50) ) Insert into tblEmployee values('Sara Nani', 'Female', 'Sara.Nani@test.com') Insert into tblEmployee values('James Histo', 'Male', 'James.Histo@test.com') Insert into tblEmployee values('Mary Jane', 'Female', 'Mary.Jane@test.com') Insert into tblEmployee values('Paul Sensit', 'Male', 'Paul.Sensit@...