我正在使用 Any+Time DatePicker/TimePicker 允许我的用户在 vb.net 中选择日期和时间。但我无法检索后面代码中的值。有人可以指出我正确的方向吗?
我正在使用这样的插件:
**aspx head:**
<script>
var curDateTime = new Date();
</script>
**aspx body:**
<input type="text" id="calDwnBgn"/>
<script>AnyTime.picker('calDwnBgn', { askSecond: false, earliest: new Date(curDateTime.getFullYear(), curDateTime.getMonth(), curDateTime.getDate(), curDateTime.getHours(), curDateTime.getMinutes(), 0), format: "%m/%e/%Z %k:%i:00" });</script>
我正在尝试访问后面代码中的值,如下所示:
Dim txtStrt As TextBox = TryCast(fv1.FindControl("calDwnBgn"), TextBox)
在此先感谢,比利