Questions tagged [ajaxcontroltoolkit]

The ASP.NET AJAX Control Toolkit is an open-source project built on top of the Microsoft ASP.NET AJAX framework.

The ASP.NET AJAX Control Toolkit is a classic set of ASP.NET WebForms extensions. It has been used in a huge number of existing projects and remains popular till now. The Toolkit contains more than 40 controls, including the HtmlEditor, Accordion, AutoComplete, Calendar and ColorPicker controls integrated with the Visual Studio design time.

The project started as a joint effort between Microsoft and the ASP.NET AJAX community, but from September 2014 the project has a new owner, which is DevExpress.

2322 questions
21
votes
3 answers

Use ModalPopupExtender without having to set TargetControlID?

I'd like to use a modalpopupextender in my asp.net page to show a sub form. But it only has to show on specific conditions. Those conditions are determined in a piece of javascript code. So, most importantly, the modal popup doesn't have to show on…
Herman Cordes
  • 4,058
  • 9
  • 46
  • 83
18
votes
6 answers

ERROR Could not load file or assembly 'AjaxControlToolkit' or one of its dependencies

I'm deploying my website on the server. My website is done using asp.net c# 4 and EF 4. I receive this error: Could not load file or assembly 'AjaxControlToolkit' or one of its dependencies. This assembly is built by a runtime newer than the…
GibboK
  • 64,078
  • 128
  • 380
  • 620
17
votes
11 answers

Positioning AJAX ModalPopupExtender in the center of the screen problem

I have problem with positioning ModalPopupExtender in the center of the screen when it's PopupDragHandleControlID property is set (without this property it works fine ). ModalPopupExtender is not positioned in the center of the screen. I thinks what…
dani
  • 1,067
  • 7
  • 19
  • 26
16
votes
5 answers

How to add ajaxcontroltoolkit to toolbox in Visual Studio 2012

I have used the ajaxtoolkit with .NET 4 and Visual Studio 2010, and I was able to add a new tab to the toolbox and add the ajaxtoolkit controls to the toolbox. How do I do this in Visual Studio 2012? I have added the ajaxtoolkit with NuGet, but I…
user1186651
  • 845
  • 2
  • 10
  • 15
16
votes
6 answers

Microsoft's AJAX Toolkit vs. jQuery

Our team has been using Microsoft's AJAX Toolkit since the days of Atlas. In a bit of naivety we missed the jQuery/Prototype phenomenon until a month or two back. Until now, we have always associated the concept of Ajax with Microsoft's…
Mayo
  • 9,758
  • 6
  • 40
  • 89
15
votes
11 answers

Could not load file or assembly 'AjaxControlToolkit' after upgrade to .net 4.0

I have a web application that I am attempting to upgrade to .net 4.0. I took the application and opened it via Visual Studio 2010 Beta 2 and selected the upgrade path for that application. The application uses the AjaxControlToolkit. Now that the…
ChrisHDog
  • 4,221
  • 8
  • 46
  • 68
13
votes
6 answers

How to check if client script is already registered during a partial postback

Below is the code I've currently implemented. if (!Page.ClientScript.IsStartupScriptRegistered(Page.GetType(), scriptKey)) { ScriptManager scriptManager = ScriptManager.GetCurrent(page); if (scriptManager != null &&…
IsmailS
  • 10,338
  • 18
  • 73
  • 128
12
votes
4 answers

How to clear file upload text in server side (c#)

I want to clear the file path from the file upload. The file upload is inside the update panel and I am using a AsyncFileUpload. How can I clear the file and change the background color of the fileupload btnAudUpload_Click Method string filename…
Murthy
  • 1,412
  • 11
  • 30
  • 45
12
votes
4 answers

Asp.Net Ajax Toolkit AsyncFileUpload - "The file is attached is invalid" error

I'm trying to use the AsyncFileUpload control from the Asp.net Ajax Control Toolkit (Sept 30, 2009 stable build: 30930) . I've created a demo application and the control works fine. Files upload and all is well. When I try to use the control in my…
Craig M
  • 5,446
  • 4
  • 29
  • 42
12
votes
2 answers

AjaxControlToolkit v7.1213 dependencies have grown

The control toolkit now has new dependencies on System.Spacial, Microsoft.Data.Edm, Microsoft.Data.OData, Microsoft.WindowsAzure.ConfigurationManager and WindowsAzure.Storage! Is this really necessary? Can I somehow bypass this bloat?
PTansey
  • 557
  • 4
  • 12
11
votes
3 answers

How do I combine WebResource.axd and ScriptResource.axd files so as to result in less requests to my ASP.NET server?

On a site I'm working on, the pages are generating 45 external WebResource.axd and ScriptResource.axd files so the broswers have to request all 45 references. That's a lot of references so I'd like to know if there is a way that all of those…
Paul Mendoza
  • 5,494
  • 9
  • 47
  • 80
10
votes
11 answers

Drop Down List (in Update Panel) causing FULL PostBack!

I have a problem with my AJAX and ASP.NET 3.5 :( Problem is really weird, as I'm using the same thing on different page and it works fine in there, but on this specific page, this is not working. Here's what I have:
user259119
  • 121
  • 1
  • 1
  • 4
10
votes
3 answers

Is there a simple way to turn off including multiple language packs when using Nuget?

I'm using nuget and am downloading the AjaxControlToolkit. The problem I have is that I don't want 20 extra folders to be created in the bin directory for different languages. Each folder only has a single file named…
Dilbert789
  • 834
  • 13
  • 28
10
votes
3 answers

Creating a DataTable object with dummy data

I am trying to databind a DataTable to an accordion and I have found that If I retrieve the DataTable from a database using a table adapter it binds to the accordion perfectly however what I want to do is create a dummy table (for testing purposes…
Morgeh
  • 639
  • 3
  • 11
  • 27
9
votes
1 answer

Ajax Control Toolkit is loading too many script resources

I created a new project. I installed Ajax Control Toolkit from NuGet. Then I created a new page aspx with following code:
POIR
  • 2,690
  • 9
  • 28
  • 46
1
2 3
99 100