|
The solution that comes to my mind may not be "the" solution for this problem.
I list it down.
1. A database will have a table that will contain fields (columns) about the information to be displayed. Each row, has to be identified uniquely.
2. Application may be developed to enter the details in the database for each movie and assign a unique id to it.
3. (your page) Will have a drop down combo box which would retrieve details from the database only from the field ("moviename") [JUST an instance]. Each will have an onclick section where the id of the movie is retrieved.
4. A page with a set of fields like "MOVIE NAME:", "RELEASED YEAR:" "DIRECTOR:" , in a tabular format can be developed in ASP, where the filling of information for each would depend on the entry (id) received from the previous page where you retrieved the information on the movie selected. (the code for this could be just below "your page")
|