1. 最好使用GridView的属性来做?
2. 如GridView属性不行,可以通过代码来做吗?
3. 在编辑字段的属性中,有一个属性DataFormatString是应用于绑定值的格式设置,如"{0:d}", "{0:c}", 但不清楚日期是如何来使用的?
<asp:TemplateField HeaderText="开始日期" SortExpression="StartDate">
<ItemTemplate>
<asp:Label ID="Label1" runat="server" Text='<%# Bind("StartDate", "{0:yyyy-MM-dd}") %>'></asp:Label>
</ItemTemplate>
</asp:TemplateField>