如何点击文本框并查看我的日历

时间:2014-03-30 17:39:03

标签: c# asp.net textbox calendar

我的aspx上有这个代码:          

<asp:TextBox ID="datepicker" runat="server" CssClass="input-date date-icn small-label" AutoCompleteType="BusinessZipCode" ></asp:TextBox>
<asp:Calendar ID="Calendar1" runat="server" OnSelectionChanged="Calendar1_SelectionChanged" Visible="false" ></asp:Calendar>
&nbsp;<br />
<br />
</ContentTemplate>
</asp:UpdatePanel> 

这是我背后的代码:

protected void Calendar1_SelectionChanged(object sender, EventArgs e)
{
    datepicker.Text = Calendar1.SelectedDate.ToString();   
}

protected void Show(object sender, EventArgs e)
{
    Calendar1.Visible = true;    
}

如何在文本框中(在aspx中)编写事件,以便它可以调用函数“Show”并显示日历?

0 个答案:

没有答案