无法在 Asp.net 文本框中输入日期

本文关键字:输入 日期 文本 net Asp | 更新日期: 2023-09-27 18:29:15

  <asp:TextBox ID="txtBalochistanExpireDate" runat="server" MaxLength="50" TextMode="Date" CssClass="form-control" ></asp:TextBox>
////CodeBehind
txtBalochistanExpireDate.Text = vehiclerootpermit.BalochistanExpireDate.ToString();

文本框在文本字段中显示为text "mm/dd/yyyy",它应该在文本字段中显示"21/10/2014",即vehiclerootpermit.BalochistanExpireDate的值。

一般信息:

BalocistanExpireDate数据类型在 SQL SERVER 中DateTime

无法在 Asp.net 文本框中输入日期

通过删除.ToString()来尝试

你的代码必须像

txtBalochistanExpireDate.Text = vehiclerootpermit.BalochistanExpireDate.Date

请分享结果,因为在我的情况下(我已经尝试过您的代码(您的代码也遇到了问题