ListView in ASP.NET
-
I am new to this... I am converting a C# application to ASP.NET in C#. In the application, we are using a ListView control which, as far as I can tell, does not exist in ASP.NET world. So I thought of using a DataGrid but man that is overwhelming. Is there a simple example or tutor to use this, add color, rows, columsn, etc? Or should I use a table? Or is there some thing else, a control I dont know about.... Thanks Ralph
-
I am new to this... I am converting a C# application to ASP.NET in C#. In the application, we are using a ListView control which, as far as I can tell, does not exist in ASP.NET world. So I thought of using a DataGrid but man that is overwhelming. Is there a simple example or tutor to use this, add color, rows, columsn, etc? Or should I use a table? Or is there some thing else, a control I dont know about.... Thanks Ralph
You could use a DataList or Repeater. The DataGrid isn't really that difficult to use. DataGridDemo[^]
-
I am new to this... I am converting a C# application to ASP.NET in C#. In the application, we are using a ListView control which, as far as I can tell, does not exist in ASP.NET world. So I thought of using a DataGrid but man that is overwhelming. Is there a simple example or tutor to use this, add color, rows, columsn, etc? Or should I use a table? Or is there some thing else, a control I dont know about.... Thanks Ralph
The DataGrid control is an excellent tool that is sometimes challenging. When I was first getting into ASP.NET I found this article to be of great help with regards to this server control. The website is aspnet.4guysfromrolla.com if this link does not work. Link: http://aspnet.4guysfromrolla.com/articles/040502-1.aspx HTH, -Brian C.