不需要自己做的,在AjaxControlToolKit中就有這個控制元件。去http://www.asp.net/ajax下載一個AjaxControlToolKit,新增到工具箱中,在工具箱中就有一個CalendarExtender控制元件,然後用下面的程式碼:<formid="form1"runat="server"><asp:ScriptManagerID="ScriptManager1"runat="server"EnableScriptGlobalization="True"EnableScriptLocalization="True"></asp:ScriptManager><div><asp:CalendarExtenderID="CalendarExtender1"Format="yyyy-MM-dd"runat="server"TargetControlID="TextBox1"></asp:CalendarExtender><asp:TextBoxID="TextBox1"runat="server"></asp:TextBox></div></form>當點選TextBox1時就會自動彈出日曆了。
不需要自己做的,在AjaxControlToolKit中就有這個控制元件。去http://www.asp.net/ajax下載一個AjaxControlToolKit,新增到工具箱中,在工具箱中就有一個CalendarExtender控制元件,然後用下面的程式碼:<formid="form1"runat="server"><asp:ScriptManagerID="ScriptManager1"runat="server"EnableScriptGlobalization="True"EnableScriptLocalization="True"></asp:ScriptManager><div><asp:CalendarExtenderID="CalendarExtender1"Format="yyyy-MM-dd"runat="server"TargetControlID="TextBox1"></asp:CalendarExtender><asp:TextBoxID="TextBox1"runat="server"></asp:TextBox></div></form>當點選TextBox1時就會自動彈出日曆了。