ASP Ajax 控制工具包 - 按日期选择

发布于 2024-08-27 14:32:29 字数 122 浏览 6 评论 0原文

我在文本框中有一个日历控件,我只是想知道在日历上选择日期时如何触发子控件?

扩展程序属性中的 OnClientDateSelection 已更改,但我不确定如何使用它。

任何帮助非常感谢! ——琼斯

I've got a calendar control on a text box I'm just wondering how I can trigger a sub when a date is chosen on the calendar?

There is a OnClientDateSelection changed in the extenders properties but im not sure how to use this.

Any help most appreciated! -- Jonesy

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

始终不够爱げ你 2024-09-03 14:32:29

您将需要使用一些客户端 JavaScript 手动回发您的表单。然后您只需检查所选日期即可执行您想要的操作。

    <cc1:CalendarExtender ID="CalendarExtender1" TargetControlID="txtDate" PopupButtonID="myButton" runat="server" OnClientDateSelectionChanged="dateChanged"></cc1:CalendarExtender>

    function dateChanged() {
       document.forms[0].submit();
    }

Protected Sub Page_Load(ByVal sender As Object, ByVal e as EventArgs)
   If txtDate.Text <> String.Empty Then DoSomething
End Sub

Private Sub DoSomething()
  'do your work
End Sub

You will need to manually post back your form with some client side javascript. Then you could just check the selected date to do what you want.

    <cc1:CalendarExtender ID="CalendarExtender1" TargetControlID="txtDate" PopupButtonID="myButton" runat="server" OnClientDateSelectionChanged="dateChanged"></cc1:CalendarExtender>

    function dateChanged() {
       document.forms[0].submit();
    }

Protected Sub Page_Load(ByVal sender As Object, ByVal e as EventArgs)
   If txtDate.Text <> String.Empty Then DoSomething
End Sub

Private Sub DoSomething()
  'do your work
End Sub
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文