<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
。
答案 0 :(得分:1)
删除.ToString()
您的代码必须像
txtBalochistanExpireDate.Text = vehiclerootpermit.BalochistanExpireDate.Date
请按照我的情况分享结果(我已尝试过您的代码)您的代码也存在问题