AjaxToolKit

Collapse
This topic is closed.
X
X
 
  • Time
  • Show
Clear All
new posts
  • =?Utf-8?B?aUhhdkFRdWVzdGlvbg==?=

    AjaxToolKit

    I have downloaded ajax and this part of the code works fine in my new sample
    website

    <ajaxToolkit:To olkitScriptMana ger ID="ScriptManag er1" runat="server" />
    <asp:TextBox ID="txtTelerik " runat="server"> </asp:TextBox>
    <asp:Button ID="btnTelerik " runat="server" Text="Show" />
    <ajaxToolkit:Ca lendarExtender ID="CalendarExt ender1"
    runat="server" CssClass="radca lendar" PopupButtonID=" btnTelerik" Format="MMMM
    d, yyyy" TargetControlID ="txtTelerik " />

    When I try to add the same code in my application the error is raised in
    this part of the code
    <ajaxToolkit:To olkitScriptMana ger

    In the tooltip the desription of the error is as follows.
    Element 'ToolscriptMana ger' is not a know element. This can occur if there
    is a compilation error in the website
  • Cowboy \(Gregory A. Beamer\)

    #2
    Re: AjaxToolKit

    You are missing declarations in your web.config file. If you move over the
    declarations, from the sample site, to your site, you will be able to AJAX
    your site properly.

    I blogged it this morning, as I have seen this issue numerous times:


    --
    Gregory A. Beamer
    MVP, MCP: +I, SE, SD, DBA

    Subscribe to my blog


    or just read it:


    *************** *************** *************** ****
    | Think outside the box!
    |
    *************** *************** *************** ****
    "iHavAQuest ion" <iHavAQuestion@ discussions.mic rosoft.comwrote in message
    news:EC114F97-3F7A-4F38-A579-413F4456F611@mi crosoft.com...
    >I have downloaded ajax and this part of the code works fine in my new
    >sample
    website
    >
    <ajaxToolkit:To olkitScriptMana ger ID="ScriptManag er1" runat="server" />
    <asp:TextBox ID="txtTelerik " runat="server"> </asp:TextBox>
    <asp:Button ID="btnTelerik " runat="server" Text="Show" />
    <ajaxToolkit:Ca lendarExtender ID="CalendarExt ender1"
    runat="server" CssClass="radca lendar" PopupButtonID=" btnTelerik"
    Format="MMMM
    d, yyyy" TargetControlID ="txtTelerik " />
    >
    When I try to add the same code in my application the error is raised in
    this part of the code
    <ajaxToolkit:To olkitScriptMana ger
    >
    In the tooltip the desription of the error is as follows.
    Element 'ToolscriptMana ger' is not a know element. This can occur if there
    is a compilation error in the website

    Comment

    Working...