我的asp.net Web应用程序中有一个文本框和日历. 我希望当我在日历中选择任何日期时,该日期的日期/月/年将显示在文本框中. 我是asp.net的新手.任何人都可以帮助我,它对我的项目更有
我希望当我在日历中选择任何日期时,该日期的日期/月/年将显示在文本框中.
我是asp.net的新手.任何人都可以帮助我,它对我的项目更有用.
谢谢
在.aspx文件中<form id="form1" runat="server"> <div> <asp:Calendar ID="Calendar1" runat="server" OnSelectionChanged="Calendar1_SelectionChanged"> </asp:Calendar> <asp:TextBox ID="TextBox1" runat="server"></asp:TextBox></div> </form>
在.aspx.cs文件中
protected void Calendar1_SelectionChanged(object sender, EventArgs e) { TextBox1.Text = Calendar1.SelectedDate.ToString(); }