I am new to ASP.net and I would like to programmatically create a dynamic Listview component. I found examples on how to do that for Gridview and Datatable but not Listview. Is it possible? Does anyone know of a good tutorial?
|
Try this
Or take a look at that Example
|
|||
|
|
|
Basic idea of how to approach this task. The key concepts are the same ones a 1) You need somewhere on the page to put the 2) This container needs to run at the server, so your C# code (which the server evaluates) can add the 3) Choose when the code to create the ListView will be called and how. I recommend you define it as a method and call it from whatever event you want e.g.:
4) Use below code in above method to create the
You will need to add to the The code found on this page has some example properties you will most likely want to use. |
||||
|
|

Gridview and Datatable, so that we know exactly what you are asking. – Win Feb 25 at 20:08