repeater显示时间
<asp:Label ID="Label4" runat="server" Text='<%#Eval("Followuptime","{0:MM-dd)") %>'></asp:Label>
我想从数据库查出时间显示在repeater中,可是上面这句总是提示:输入的文件格式不正确
------解决方案--------------------你写错了,应该是
{0:MM-dd}
不是
{0:MM-dd)
注意后面的括号
------解决方案--------------------Convert.ToDateTime(Eval("Followuptime").ToString().Trim()).ToString("D");
显示格式:2012年5月2日
------解决方案--------------------DateTime dt=DateTime.Now;
this.txtTime.Text=dt.ToString("yyyy-MM-dd");