Search Results

3
votes

Programmatically Select Item in Asp.Net ListView

I looked at some of what's going on in ListView under the hood and think this is probably the best approach. void listView_ItemCreated(object sender, ListViewItemEventArgs e) { // …
1
vote

ASP.NET Gridview with all records editable.

I would be inclined to use the ListView personally for this, since you can insert Rows with it. Your LayoutTemplate would be a table with a <tr runat="server" ID="itemPlaceHolder" /> in it. Y …