Click here to Skip to main content
15,911,848 members
Please Sign up or sign in to vote.
0.00/5 (No votes)
See more:
I am working in VS 2005, I have installed Ajax Toolkit before i had installed Asp.net 2.0 Ajax Extender 1.0 set up file. Then i had launched tools in my toolbox.

But When i was used that controlled that will not be worked

For example i am used calender Extender tool, the calender will not be appeared

Please anyone can solved this problem
Posted

just reinstall the ajax toolkit from codeplex and also install .net framework of upper version. then it'll work. because i faced this b4 whn i installed it on my machine.
 
Share this answer
 
Add scriptmanager on the page or in masterpage then add other toolkit control on page.

Hope this will help :)

Thanks
Vinod
 
Share this answer
 
v2
have you change web.config for AJAX ? check here[^]
 
Share this answer
 
You Should be check your web config file, there should be add assembly information.
You can use this code in your webconnfif file...
XML
<httpHandlers>
            <remove verb="*" path="*.asmx"/>
            <add verb="*" path="*.asmx" validate="false" type="System.Web.Script.Services.ScriptHandlerFactory, System.Web.Extensions, Version=1.0.61025.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"/>
            <add verb="*" path="*_AppService.axd" validate="false" type="System.Web.Script.Services.ScriptHandlerFactory, System.Web.Extensions, Version=1.0.61025.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"/>
            <add verb="GET,HEAD" path="ScriptResource.axd" type="System.Web.Handlers.ScriptResourceHandler, System.Web.Extensions, Version=1.0.61025.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" validate="false"/>
        </httpHandlers>
        <httpModules>
            <add name="ScriptModule" type="System.Web.Handlers.ScriptModule, System.Web.Extensions, Version=1.0.61025.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"/>
        </httpModules>


I hope that this will be work
 
Share this answer
 
hi.
to add the Ajax Control Toolkit to the Visual Studio Toolbox. Follow these steps:

Launch Visual Studio and create a new ASP.NET Web Forms project or website. Open Default.aspx in the Visual Studio editor.

Create a new Toolbox tab by right-clicking the Toolbox and selecting Add Tab. Name the new tab Ajax Control Toolkit.

Right-click beneath the new tab and select the menu option Choose Items... Click the Browse button and browse to the folder where you extracted the Ajax Control Toolkit. Pick the AjaxControlToolkit.dll and click the OK button to close the Choose Toolbox Items dialog.
 
Share this answer
 

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900