本文介绍了将asp:calander绑定到用户输入的特定月份的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

嗨!

i有asp:calander,文本框和按钮。

我想要的是当用户在文本框中输入1月并点击按钮时calander应该显示1月份。

hi!
i have asp:calander, textbox, and a button.
what i want is that when user enters january in the text box and click on button the calander should show the month of january.

<asp:TextBox ID="TextBox1" runat="server"></asp:TextBox>
        <asp:Button ID="Button1" runat="server" Text="Button" onclick="Button1_Click" />
<asp:Calendar runat="server" ID="eventsCal"></asp:Calendar>



代码落后


Code behind

protected void Button1_Click(object sender, EventArgs e)
    {
       
    }





请有人告诉我怎么做。

提前谢谢



please somebody tell me how to do it.
thanks in advance

推荐答案


这篇关于将asp:calander绑定到用户输入的特定月份的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

10-15 18:36