How to display the arraylist contents into a table
I am currently using MS Visual Web Developer Express Edition (2005). I have my arraylist below:
Public movie(10) As clsMovie
movie(0) = New clsMovie("VD01", "Shrek", "Classic", "Available", 2)
movie(1) = New clsMovie("DV01", "Doraemon", "Premium", "Available", 5)
those array is taken from clsMovie class file.
how do i display those lists into a table in ASP.NET?
thanks.....
|