更新时在ASP.Net GridView中格式化DateTime,而不使用c#



请参阅以下代码:

  <asp:TemplateField HeaderText="DOB" SortExpression="dob" >
                    <EditItemTemplate >
                        <asp:TextBox ID="TextBox3" Width="60px" runat="server" Text='<%# Bind("dob", "{0:d-M-yyyy}") %>'></asp:TextBox>
                        <asp:CalendarExtender ID="TextBox3_CalendarExtender"  runat="server" Enabled="True" Format="d-M-yyyy" TargetControlID="TextBox3">
                        </asp:CalendarExtender>
                    </EditItemTemplate>
                    <ItemTemplate>
                        <asp:Label ID="Label3" runat="server" Text='<%# Bind("dob", "{0:d-M-yyyy}") %>'></asp:Label>
                    </ItemTemplate>
                </asp:TemplateField>

我在数据库中有一个名为"dob"的DateTime列。我在绑定时已将其格式化为"d-M-yyy"。除了用户直接从GridView更新他的DOB之外,一切都很完美。

因为,我在文本框中以"d-M-yyyy"格式显示日期,而数据库服务器将其视为"mm-dd-yyyy"形式,所以当用户想要更新数据时就会出现问题。

顺便说一下,服务器提出了这个问题:

System.FormatException: String was not recognized as a valid DateTime.

更新代码:

  UpdateCommand="update family_members_info set dob=@dob  where memberID=@memberID">              
            <UpdateParameters>                                
                <asp:Parameter Name="memberID" />                   
                <asp:Parameter Name="dob" Type="DateTime" />                    
            </UpdateParameters>

如有任何帮助,我们将不胜感激。

hi使用日期格式作为

   <asp:TextBox ID="TextBox3" Width="60px" runat="server" Text='<%# Bind("dob", "{0:dd-MMM-yyyy}") %>'></asp:TextBox>

感谢

在我的案例中,帮助添加

<globalization culture="cs-CZ" uiCulture="cs-CZ" />

标记。

来源:http://msdn.microsoft.com/en-us/library/system.globalization.cultureinfo(v=vs.71(.aspx

相关内容

  • 没有找到相关文章

最新更新