Here is the structure of my database:

i have textbox1 and textbox2 and 8 checkboxes in my ASP.NET (VB.NET) webform.
i want to retrieve the seats on the particular dates means if i enter 11/12/2010 in textbox1 then in textbox2 the output would be from seat_select column, let say (1,2,3) where date would be 11/12/2010
If i enter 13/12/2010 in textbox1 then in textbox2 the output would be 1,2
How to do this in VB.NET?
Markup:
Code-behind (C#) – formatting on presentation layer:
Don’t forget to add the reference to
System.Data.DataSetExtensions.dll,System.Core.dll.Code-behind (C#) – formatting on data layer: