tags:

views:

17

answers:

2

Hi,

I have added AjaxControlToolKit.dll to my web project and using couple of controls on my web form. What steps to I need to take to deploy to test and production servers? It works fine on my development. AjaxControlToolKit.dll is in my bin folder.

Thanks..

+1  A: 

AjaxControlToolkit.dll just needs to exist with your test/production binaries--make sure you compile against the same versions for future updates.

If everything works in dev, your page directives (@Register...) along with the library should be sufficient.

David
+1  A: 

Just deploy it to your server with your application and keep it in the /bin folder.

If you're using .NET 2.0 however then you needed to install the ASP.NET AJAX Extensions in order to get it working. If you deploy such an application to your server you also need to install those extensions there in order to have your toolkit working.
If you're using .NET 3.5 (sp1) then all the Ajax goodness is already baked in and you don't have to install extra extensions.

XIII
Thank you very much.
nav100
@nav100: if you like it and it worked, please mark it as the answer. This'll help you help out others.
XIII

related questions