Dear Friends
This is Jeyapriya. Right now I am working in the ASP.NET with VB coding & the back end is SQL SERVER 2000.
My dilemma is
I have to design a form with 2 DropDownListbox es. I have to load the ‘names of the theater’ on the 1st DropDownListbox & the names of the movie on the second DropDownListbox . That’s why I have created 2 tables named ‘theater’ and ‘movie’ on sql server 2000. The ‘theater’ table consists of 2 fields
1) tid
2) tname
The movie table has 2 fields
1) mid
2) mname
If I select a item in theater DropDownListbox , then the corresponding movies should be filled on the movie DropDownListbox . And by default, both the DropDownListbox es should show ‘CHOOSE’(‘Choos e Theater’ in Theater-DropDownListbox and ‘Choose Movie’ in Movie DropDownListbox )
Now the problem is, I don’t know what is the next step to do.
This is Jeyapriya. Right now I am working in the ASP.NET with VB coding & the back end is SQL SERVER 2000.
My dilemma is
I have to design a form with 2 DropDownListbox es. I have to load the ‘names of the theater’ on the 1st DropDownListbox & the names of the movie on the second DropDownListbox . That’s why I have created 2 tables named ‘theater’ and ‘movie’ on sql server 2000. The ‘theater’ table consists of 2 fields
1) tid
2) tname
The movie table has 2 fields
1) mid
2) mname
If I select a item in theater DropDownListbox , then the corresponding movies should be filled on the movie DropDownListbox . And by default, both the DropDownListbox es should show ‘CHOOSE’(‘Choos e Theater’ in Theater-DropDownListbox and ‘Choose Movie’ in Movie DropDownListbox )
Now the problem is, I don’t know what is the next step to do.
Comment