Problem with Ajax Toolkit ASP.NET (Visual Basic)
Posted
by AZIRAR
on Stack Overflow
See other posts from Stack Overflow
or by AZIRAR
Published on 2010-05-31T12:35:31Z
Indexed on
2010/05/31
12:43 UTC
Read the original article
Hit count: 472
Hey,
I'm trying to use Ajax Toolkit
in ASP.NET page to display a Calendar Extender with this code, but it's not working for me.
<form id="form1" runat="server">
<asp:ScriptManager ID="ScriptManager1" runat="server">
</asp:ScriptManager>
<div>
<br />
<br />
<b>Calendar :</b><br />
<asp:TextBox ID="Date1" runat="server"></asp:TextBox>
<asp:CalendarExtender ID="CalendarExtender1" runat="server" TargetControlID="Date1">
</asp:CalendarExtender>
</div>
</form>
It's not displaying the calendar.
What's the problem ?
© Stack Overflow or respective owner