问题描述
我想实现在日历控件上selectdate为当天日期,我用了日期函数如下:出现theservertagisnotwellformed,找不到错啊,请各位帮忙啊代码如下:<formrunat="server"><asp:CalendarID="calendar"runat="server"SelectedDate="cstr(format(now(),"yyyy/mm/dd")"SelectionMode="DayWeekMonth"SelectMonthText="全选"ShowGridLines="true"...以下就省略了,
解决方案
解决方案二:
SelectedDate="cstr(format(now(),"yyyy/mm/dd")"把里面的双引号改成单引号SelectedDate="cstr(format(now(),'yyyy/mm/dd')"像这情况只有两种可能1.就是你这种2.还有就是Server控件没写ID
解决方案三:
yyyy/mm/dd-->yyyy/MM/dd小写的是分钟
解决方案四:
不行啊,我试过了,还是显示错误ParserErrorMessage:cstr(format(now(),'yyyy/MM/dd')isnotavalidvalueforDateTime.
解决方案五:
好像不能这样设置日期,你直接在后台用C#设置吧
解决方案六:
C#不会啊,如果照我的思路应该怎么改呢?我是新手,还请各位高手指教啊
解决方案七:
calendar.SelectedDate=DateTime.Parse("1999-9-9");选定的日期calendar.VisibleDate=DateTime.Parse("1999-8-9");显示的日期
时间: 2025-01-19 20:25:09