Hi,
You'll have to excuse my ignorance, I'm coming at this from a front-end perspective, and don't really know how to deal with data views in ASP.NET.
Basically, I'm trying to change the layout of some repeated data from a straight table, to something more design-heavy. It's the same data, just re-organised slightly. The current ASP.NET code looks like this:
<table>
<tr>
<td>
<asp:GridView ID="GVMoments" runat="server" AllowPaging="True" AllowSorting="True"
AutoGenerateColumns="False" PageSize="20" RowHeaderColumn="FirstName"
SkinID="GroupSkin" DataKeyNames="moment_id"
DataSourceID="SqlDataEditMoments">
<PagerSettings Mode="NumericFirstLast" PageButtonCount="20" Position="TopAndBottom" />
<RowStyle />
<Columns>
<asp:BoundField DataField="moment_id" HeaderText="moment_id" ReadOnly="True" SortExpression="moment_id"
Visible="False" In
View Complete Post