Hi all,
I have the following code in MS Visual Studio 2012. I have one solution with one form and I am trying to work with the Ajax calendar extender.
I want it to popup when the textbox is clicked, yet I cannot get the calendar to appear.
The code is below Thank you in advance.
<%@ Page Language="VB" AutoEventWireup="false" CodeFile="Default.aspx.vb" Inherits="_Default" %>
<!DOCTYPE html>
<html xmlns="http://www.w3.org/1999/xhtml">
<head runat="server">
<title></title>
</head>
<body>
<form id="form1" runat="server">
<div>
<asp:ScriptManager ID="ScriptManager1" runat="server">
</asp:ScriptManager>
<asp:TextBox ID="TextBox1" runat="server"></asp:TextBox>
<ajaxToolkit:CalendarExtender ID="TextBox1_CalendarExtender2" runat="server" Enabled="True" TargetControlID="TextBox1">
</ajaxToolkit:CalendarExtender>
</div>
</form>
</body>
</html>