ajaxtoolkit problem
-
i use ajaxToolkit:modalpopupExtender in my site..its working fine on local machine...but when i upload this site on net i got this exception.. "Could not load file or assembly 'AjaxControlToolkit' or one of its dependencies. The system cannot find the file specified."...so please tell me the solution..as i copied all dll.."AjaxControlToolkit.dll","System.Web.Extensions.dll","AJAXExtensionsToolbox.dll","System.Web.Extensions.Design.dll" and some other folder in bin folder.....please help me
-
Have you added it to your toolbar in visual studio? Have you delcared the tag AjaxControlToolkit at the top of the page?
We are not a Code Charity
ya i have added this in my master page... <%@ Register Assembly="AjaxControlToolkit" Namespace="AjaxControlToolkit" TagPrefix="ajaxToolkit" %> its working fine on my local server..but on net its giving the exception...Could not load file or assembly 'AjaxControlToolkit' or one of its dependencies. The system cannot find the file specified....please help me
-
ya i have added this in my master page... <%@ Register Assembly="AjaxControlToolkit" Namespace="AjaxControlToolkit" TagPrefix="ajaxToolkit" %> its working fine on my local server..but on net its giving the exception...Could not load file or assembly 'AjaxControlToolkit' or one of its dependencies. The system cannot find the file specified....please help me
Server has "AJAX extensions" installed ?
All C# applications should call Application.Quit(); in the beginning to avoid any .NET problems.- Unclyclopedia How to use google | Ask smart questions
-
ya i have added this in my master page... <%@ Register Assembly="AjaxControlToolkit" Namespace="AjaxControlToolkit" TagPrefix="ajaxToolkit" %> its working fine on my local server..but on net its giving the exception...Could not load file or assembly 'AjaxControlToolkit' or one of its dependencies. The system cannot find the file specified....please help me
-
You need to make sure ajax is installed on your server as well as your localmachine
We are not a Code Charity
No ajax is not installed on server....is der any other way to run the site without installing the ajax on server.....cann't it run only by copying the dll on bin folder....please tell if der is any other way....
-
No ajax is not installed on server....is der any other way to run the site without installing the ajax on server.....cann't it run only by copying the dll on bin folder....please tell if der is any other way....
Nope I'm pretty sure you have to have ajax installed on the server because that is where the code is going to be running and it needs to know what the control is. Its not hard to install on the server, is there any reason why your hesitant?
We are not a Code Charity
-
Nope I'm pretty sure you have to have ajax installed on the server because that is where the code is going to be running and it needs to know what the control is. Its not hard to install on the server, is there any reason why your hesitant?
We are not a Code Charity
-
-
I would down load 1.1 as the new one is designed for 3.5 framework. Then just install on the server as you have done for the other toolkit
We are not a Code Charity
Hi, Here is another way of doing it. Create a AjaxDlls folder in your project and copy all 4 dlls to it, and reference the ajax dlls by adding them to your project from AjaxDlls folder. When you install ajax some dlls get registered in your machine’s GAC and when you add AJAX controls, it may get referenced from GAC. I feel you may, already have those references, if you right click project and go to properties page you will see all the references and from where they are added to your project. So remove those references and add the references again from the AjaxDlls folder you created earlier and build it. This does not require you to install AJAX in your production server. Thx, Gayani
-
Hi, Here is another way of doing it. Create a AjaxDlls folder in your project and copy all 4 dlls to it, and reference the ajax dlls by adding them to your project from AjaxDlls folder. When you install ajax some dlls get registered in your machine’s GAC and when you add AJAX controls, it may get referenced from GAC. I feel you may, already have those references, if you right click project and go to properties page you will see all the references and from where they are added to your project. So remove those references and add the references again from the AjaxDlls folder you created earlier and build it. This does not require you to install AJAX in your production server. Thx, Gayani