我正在尝试将值从 Any+Time DatePicker/TimePicker 传递到后面的 asp.net 代码
I am trying pass the value from Any+Time DatePicker/TimePicker to asp.net code behind
我正在使用 Any+Time DatePicker/TimePicker 来允许我的用户 select 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)
提前致谢,
比利
我认为我必须在我的表单中找到控件,然后使用 TextBox 属性来获取值,但我能够通过将 name 属性添加到输入标签并调用 Page.Request.Form 在后面的代码中:
<input type="text" id="calDwnBgn" name="_calDwnBgn"/>
然后在后面的代码中:
Page.Request.Form("_calDwnBgn").ToString()
我正在使用 Any+Time DatePicker/TimePicker 来允许我的用户 select 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)
提前致谢, 比利
我认为我必须在我的表单中找到控件,然后使用 TextBox 属性来获取值,但我能够通过将 name 属性添加到输入标签并调用 Page.Request.Form 在后面的代码中:
<input type="text" id="calDwnBgn" name="_calDwnBgn"/>
然后在后面的代码中:
Page.Request.Form("_calDwnBgn").ToString()