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

时间:2014-11-05 09:25:25

标签: c# asp.net datetime textbox

  <asp:TextBox ID="txtBalochistanExpireDate" runat="server" MaxLength="50" TextMode="Date" CssClass="form-control" ></asp:TextBox>

////CodeBehind
txtBalochistanExpireDate.Text = vehiclerootpermit.BalochistanExpireDate.ToString();

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

一般信息:

SQL SERVER中的

BalocistanExpireDate数据类型为DateTime

1 个答案:

答案 0 :(得分:1)

删除.ToString()

尝试

您的代码必须像

txtBalochistanExpireDate.Text = vehiclerootpermit.BalochistanExpireDate.Date

请按照我的情况分享结果(我已尝试过您的代码)您的代码也存在问题