I have created a grid view, can I tie that grid view column to the array list?
If possible, please write a sample code.
Thank you in anticipation
Yes, it is possible. You must specify the column in your grid view, bind them with your expression, depending on your needs and content of ArrayList (what type of items do you take into it?) And then just type in your code. :
myGrid.DataSource = myArrayList; MyGrid.Databind ();
Comments
Post a Comment