geeze, seems like it would be simple. Does anyone have an idea why the date and currency formatting I did in my gridview is not working? The table renders with the data, but the data appears exactly as is, without any of the formatting that I entered in
the gridview.
<asp:GridView ID="gvCharges" runat="server" AutoGenerateColumns="False" DataKeyNames="ChargeID">
<Columns>
<asp:BoundField DataField="ChargeID" Visible="false" />
<asp:BoundField DataField="Date" HeaderText="Date" DataFormatString="{0:d}" />
<asp:BoundField DataField="Member" HeaderText="Member" />
<asp:BoundField DataField="Description" HeaderText="Description" />
<asp:BoundField DataField="Charge" HeaderText="Charge&quo ...
Go to the complete details ...