0

I am trying to get the AjaxControlToolkit Calendar object to populate on an aspx page within firefox (latest build) . My environment consists of .net 3.5, vs 2010, and vista latest sp.

Here is the code I am executing:

<asp:ScriptManager ID="ScriptManager1" runat="server">
                                </asp:ScriptManager>
    <asp:TextBox ID="TextBox1" runat="server"></asp:TextBox>
    <ajaxToolKit:CalendarExtender ID="TextBox1_CalendarExtender" runat="server" 
        Enabled="True" TargetControlID="TextBox1">
    </ajaxToolKit:CalendarExtender>

EDIT

By populate I mean display with data. At the moment it doesn't even show up, I am exploring other packages to use at the moment because I am on a schedule. I will look into posting more code up.

Additional code: http://pastebin.com/m59d8392e

Woot4Moo
  • 23,987
  • 16
  • 94
  • 151
  • Can you post some more code and clarify your issue a little bit more? What do you mean by populate? Does the calendar just not show? Are you expecting a calendar image button to show on the page next to the text box? – Kyle Trauberman Dec 29 '09 at 04:40

1 Answers1

2

I had an issue somewhat similar to this a while back and asked the below question. The answer was to ensure that a doctype definition existed at the top of the document. Try it out and see if it fixes your issue.

CalendarExtender Positioning Problem

Community
  • 1
  • 1
Kyle Trauberman
  • 25,414
  • 13
  • 85
  • 121