I place a TextBox on the form and would like to add Extender.
I use VS 2012 Express and get error message that I need Ajax Control Toolkit for .Net 4.0, but I think that VS 2012 using .Net 4.5 and I download Ajax Control ToolKit .Net 4.5 version from the web site.
I would like to know what is the proper procedure and installtion for Ajax Control Toolkit for VS 2012 Express.
throw new Error("AjaxControlToolkit requires ASP.NET Ajax 4.0 scripts. Ensure the correct version of the scripts are referenced. If you are using an ASP.NET ScriptManager, switch to the ToolkitScriptManager in AjaxControlToolkit.dll.");
I got above error message when I followed the link you gave me.
I use VS 2012 Express and Ajax Contorl Toolkit .Net 4.5
I use ToolkitScriptManager on my web form.
I would like to know does VS 2012 Express should use Ajax Control Toolkit for .Net 4.5.
Whether you are using VS 2008, or VS 2010. If you use Toolkit control, you should include ToolkitScriptManager in your code. ToolkitScriptManager is the newer one instead of ScriptManager. And before that, you should install the correct Toolkit.
Version 3.0.20229 2008-02-29 release of the AJAX Control Toolkit targets the official release of .NET Framework 3.5 and Visual Studio 2008.
Version 1.0.20229 You can also download the Toolkit for .NET Framework 2.0, ASP.NET AJAX 1.0 and Visual Studio 2005.
Version 3.0.30512 2009-05-12 release of the AJAX Control Toolkit targets the official release of .NET Framework 3.5 SP1 and Visual Studio 2008 SP1.
Version 3.0.30930 September 30, 2009 release of the AJAX Control Toolkit for ASP.NET 3.5 Service Pack 1 and Visual Studio 2008 SP1.
inungh
Member
68 Points
183 Posts
Add Extender
Oct 07, 2012 06:14 PM|LINK
I place a TextBox on the form and would like to add Extender.
I use VS 2012 Express and get error message that I need Ajax Control Toolkit for .Net 4.0, but I think that VS 2012 using .Net 4.5 and I download Ajax Control ToolKit .Net 4.5 version from the web site.
I would like to know what is the proper procedure and installtion for Ajax Control Toolkit for VS 2012 Express.
Your help and information is great appreciated,
Regards,
Sourise,
Rajat
Member
444 Points
131 Posts
Re: Add Extender
Oct 07, 2012 06:31 PM|LINK
I hope this link will help you
http://www.asp.net/web-forms/tutorials/ajax-control-toolkit/getting-started/using-ajax-control-toolkit-controls-and-control-extenders-cs
inungh
Member
68 Points
183 Posts
Re: Add Extender
Oct 07, 2012 08:09 PM|LINK
throw new Error("AjaxControlToolkit requires ASP.NET Ajax 4.0 scripts. Ensure the correct version of the scripts are referenced. If you are using an ASP.NET ScriptManager, switch to the ToolkitScriptManager in AjaxControlToolkit.dll.");
I got above error message when I followed the link you gave me.
I use VS 2012 Express and Ajax Contorl Toolkit .Net 4.5
I use ToolkitScriptManager on my web form.
I would like to know does VS 2012 Express should use Ajax Control Toolkit for .Net 4.5.
Your information and help is great appreciated,
Sourises,
inungh
Member
68 Points
183 Posts
Re: Add Extender
Oct 07, 2012 08:17 PM|LINK
I just did a test using VS 2010 Express which works following the link you gave me, but it failed and get error message from VS 2012 Express.
Thanks again for helping,
Sourises,
chetan.sarod...
All-Star
65839 Points
11163 Posts
Re: Add Extender
Oct 08, 2012 03:25 AM|LINK
38875 Points
3910 Posts
Moderator
Microsoft
<div class="comment-right-col">Re: AJAX Control Toolkit
07-13-2010 01:51 PM|LINK
<div>Hi,
Whether you are using VS 2008, or VS 2010. If you use Toolkit control, you should include ToolkitScriptManager in your code. ToolkitScriptManager is the newer one instead of ScriptManager. And before that, you should install the correct Toolkit.
Version 3.0.20229 2008-02-29 release of the AJAX Control Toolkit targets the official release of .NET Framework 3.5 and Visual Studio 2008.
Version 1.0.20229 You can also download the Toolkit for .NET Framework 2.0, ASP.NET AJAX 1.0 and Visual Studio 2005.
Version 3.0.30512 2009-05-12 release of the AJAX Control Toolkit targets the official release of .NET Framework 3.5 SP1 and Visual Studio 2008 SP1.
Version 3.0.30930 September 30, 2009 release of the AJAX Control Toolkit for ASP.NET 3.5 Service Pack 1 and Visual Studio 2008 SP1.
Version 3.0.40412
April 12, 2010 release of the AJAX Control Toolkit for ASP.NET 3.5 Service Pack 1 and Visual Studio 2008 SP1.
</div> </div>Senior Software Engineer,
Approva Systems Pvt Ltd, Pune, India.
inungh
Member
68 Points
183 Posts
Re: Add Extender
Oct 08, 2012 03:43 AM|LINK
Thanks for the message,
If I understand correctly, there is no Ajax Control Tookit version target VS 2012.
Please let me know if I am wrong,
Thanks again,
Regards,
Sourises,
Song-Tian - ...
All-Star
43705 Points
4304 Posts
Microsoft
Re: Add Extender
Oct 08, 2012 09:41 AM|LINK
Hi,
Yes, you could report that at:
http://ajaxcontroltoolkit.codeplex.com/workitem/list/basic.
Feedback to us
Develop and promote your apps in Windows Store
Aniruddha Gh...
Member
59 Points
19 Posts
Re: Add Extender
Oct 08, 2012 10:00 AM|LINK
Hi,
The following process should be followed for implementing ACT (AjaxControlToolkit) in your application:
1. Copy the AjaxControlToolkit.dll file in the bin folder of your application.
2. If it is a Website, then go to step 3 else if it is a Web Application then Add a reference of the above dll into your application.
3. Add the following Tag(in bold and underlined)
<system.web>
<pages>
<controls>
<add namespace="AjaxControlToolkit" assembly="AjaxControlToolkit" tagPrefix="ajax" />
</controls>
</pages>
</system.web>
Now you should be able to get the ACT Controls & Extenders with the <ajax: tag.
Hope this helps!
Aniruddha Ghoshal
(Mark as answer if you find the information useful)