locked
Unknown server tag 'ajaxToolkit:CalendarExtender'. RRS feed

  • Question

  • User1052662409 posted

    Hi all,

            I just migrate an application from .NetFramwork (2.0+3.5) to 4.0. In that I used ajax. I did thi application with the help of VisualStudio2005. But Now I am using Visual WebDeveloper 2010 Express edition.

    So whenever I access the forms where I have used Ajax, It shows a msgbox[ see the screenshot below].

    untill I continue it, it'll not run.

    How to overcome this.

    Thanks.

    Gaurav

    Sunday, February 27, 2011 2:22 AM

Answers

  • User-1373473781 posted

     In web.config add the following lines

    <add assembly="AjaxControlToolkit, Version=3.5.40412.0, Culture=neutral, PublicKeyToken=28f01b0e84b6d53e"/>

    Goes between <assemblies></assemblies> tag.

    <add tagPrefix="ajaxToolkit" namespace="AjaxControlToolkit" assembly="AjaxControlToolkit, Version=3.5.40412.0, Culture=neutral, PublicKeyToken=28f01b0e84b6d53e"/>                                

    Goes between <controls></controls>

    Plz verify the Assembly versions may be varry

    • Marked as answer by Anonymous Thursday, October 7, 2021 12:00 AM
    Sunday, February 27, 2011 2:29 AM

All replies

  • User-1373473781 posted

     In web.config add the following lines

    <add assembly="AjaxControlToolkit, Version=3.5.40412.0, Culture=neutral, PublicKeyToken=28f01b0e84b6d53e"/>

    Goes between <assemblies></assemblies> tag.

    <add tagPrefix="ajaxToolkit" namespace="AjaxControlToolkit" assembly="AjaxControlToolkit, Version=3.5.40412.0, Culture=neutral, PublicKeyToken=28f01b0e84b6d53e"/>                                

    Goes between <controls></controls>

    Plz verify the Assembly versions may be varry

    • Marked as answer by Anonymous Thursday, October 7, 2021 12:00 AM
    Sunday, February 27, 2011 2:29 AM
  • User1560559919 posted

    thnks... RaviSM...

    Tuesday, November 15, 2011 3:29 AM