-
what is the best way
of in a page show something? like i have a string array that contains values..and for each string i want to put for example a different image, different text and different buttons..how should i do this? is there any control out there that can do this? i used once datalist but it works only for databinding in databases and for what i want i wont use databases..any help plz?
-
will i have to do it in the old asp/php way? put a label and fill it up with all the html codes?
-
You could use one of the list controls, such as a repeater or datalist. Also, databases are not the only datasource that you can bind 2. You can basically bind to anything that implements IEnumerable, such as an array or collection.
-
hmm didnt know that...2morrow ill check that carefully