0

我正在使用 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)

在此先感谢,比利

4

1 回答 1

0

我以为我必须在我的表单中找到控件,然后使用 TextBox 属性来获取值,但是我能够通过将 name 属性添加到输入标记并调用 Page.Request.Form 在后面的代码中获取值后面的代码:

<input type="text" id="calDwnBgn" name="_calDwnBgn"/>

然后在后面的代码中:

Page.Request.Form("_calDwnBgn").ToString()
于 2020-01-21T18:01:34.467 回答