ajaxcontroltoolkit

I am getting Ajax Animation error when i call another page using Ajax

Microsoft JScript runtime error: Sys.ArgumentTypeException: Object of type 'AjaxControlToolkit.Animation.LengthAnimation' cannot be converted to type 'AjaxControlToolkit.Animation.Animation'. Parameter name: instance ...

AJAX Toolkit for ASp.net MVC

Is there any ajax toolkit for asp.net MVC ...

Javascript Object Required error when scrolling page.

I have a page that uses the ModalPopupExtender. The popup can do some functions on it, and is kept open using ModalPopupExtender.Show() server-side. Whenever I do something other than closing the popup, I start getting javascript "object required" errors at line 2, but only when I try to scroll up and down the page. The popup is ope...

Ajax Control Toolkit not working on IE8

hi, I am using Ajax Control Toolkit version 40412 in my asp.net 4.0 website. When I run the page in Firefox it is working good but I run the page in IE8 it is not rendering toolkit controls and putting "//" characters on the bottom of page.This is happening with every control of toolkit. What can be the problem with this, any ideas? ...

How to stop AjaxToolkit AsyncFileUpload tabbing order from stopping on filepath text box.

I have an ASPX page with an AsyncFileUpload control from the AJAX Control Toolkit, but when I try to tab through the tab order, the tab will not allow a tab past the filepath textbox (part of the AsyncFileUpload control). This control is contained within an update panel (if that matters in this implementation). How can I continue on in...

Migrating to web application with AjaxControlToolkit

Hi All, We are currently migrating our ASP.NET website to a web application in Visual Studio 2008. Most of the process has been fairly straight forward, but I have hit one block that is driving me a bit nuts. We are using the AjaxControlToolkit for some functionality, specifically an AutoControlExtender. When this is run locally throu...

Could not load file or assembly 'System.Web.Ajax, Version=3.0.31106.0

HI folks, I have a .net application (vb.net) and I'm using the ajax control toolkit. It works fine on my production machine but when I upload it to the host (fasthosts) i get this error: Could not load file or assembly 'System.Web.Ajax, Version=3.0.31106.0, Culture=neutral, PublicKeyToken=28f01b0e84b6d53e' or one of its dependencies. T...

Where can I download the Ajax Control Toolkit for ASP.NET version 2.0?

Where can I download the Ajax Control Toolkit for ASP.NET 2.0? I can find it for version 3.5 and 4, but they are not working with Visual Studio 2005. ...

AJAX ModalPopup Pops Behind (Under) Page Content (Negative z-index)

I am having an issue with the AJAX ModalPopupExtender in version 40412 of the AJAX Control Toolkit (http://ajaxcontroltoolkit.codeplex.com/releases/view/43475). The first time the ModalPopup is made visible it works correctly. The z-index is set to 6001 (and the background Div's z-index is set to 6000) and the Popup appears above everyt...

Displaying Asp.net AJAX Calendar Extender Two Ways

Is there a way to set up the calendar extender so that the calendar displays when the text box recieves focus AND when the when the element with the "PopupButtonID" is clicked? With my current settings it seems to be one or the other. ...

ModalPopup inside the UpdatePanel with default form values

I have a ModalPopupExtender inside an UpdatePanel which opens an input form. The problem is when I click the "Edit" button (which is also inside the UpdatePanel) I want to fill the form with existing values using server side code. But it OnClick method of the button doesn't seem to work. My question is: How can I make the serverside cod...

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 && scriptManager.IsInAsyncPostBack) { //if a MS AJAX request, use the Scriptmanager class ScriptManager.Registe...

Javascript error after updating ASP.NET AJAX ControlToolkit

I've just updated to the AJAX Control Toolkit 3.5, changed the ScriptManager to the ToolkitScriptManager in my master page and now the following javascript error occurs when an Edit button is clicked: "Object doesn't support this property or method" The line of code cuasing the error is: this._destroyTree(updatePanelElement); Any in...

Is it worth the time to switch from AjaxControlToolkit to jQuery?

I keep hearing all these things about how awesome jQuery is and how the AjaxControlToolkit sucks. Unfortunately, I only heard about this after I built my entire WebForms site using the toolkit. Now I am considering switching, if not entirely, mostly to jQuery. This is partially for the experience (having never coded in Javascript or...

Getting 'AJAX Control Toolkit is undefined' when setting the CombineScripts="true"

I am getting AJAX Control Toolkit is undefined error when I have the CombineScripts="true" on the ToolkitScriptManager: <ajaxToolkit:ToolkitScriptManager ID="ToolkitScriptManager1" EnablePageMethods="false" ScriptMode="Release" LoadScriptsBeforeUI="false" runat="server" CombineScripts="true"> <CompositeScript> ...

Regular expression issue

what is regular expression validator for the textbox which doesnot contains character like "< >" as a string input ...

Check if value of textbox extended with MaskedEditExtender is valid?

Below is my code: <asp:TextBox ID="FromDateTextBox" runat="server" /> <asp:ImageButton ID="FromDateImageButton" runat="server" ImageUrl="~/images/calander.png" /> <ajaxkit:CalendarExtender ID="FromDate" runat="server" TargetControlID="FromDateTextBox" CssClass="CalanderControl" PopupButtonID="FromDateImageB...

ajax modalpopupextender thumbnail viewer

Hi there, I have a ajax:accordion in asp.net page.user can add images inside the accordion,I keep the path in sql server and save the actual image in web server physical address. what I need to have is to show the thubmnail image of actual image in accordion,and when user click use a ModapopupExtender to show the actual image with prog...

How to keep MaskedEdit extenders from breaking CodedUITests? (Visual Studio 2010)

I'm trying to implement coded UI tests, but have run into a problem. Whenever the test runs across a textbox with a masked edit extender on it, it records the mask as part of the input but does not enter that mask when it "types" that input during a playback. Example: mask is "//__" for a date. If I enter 02 02 2010 the textbox correctly...

ModalPopupExtender with thmbnail (problem in javascript)

Hi there, I have aModalPopupExtender control inside accordin control, users can add images, that I sotre the path in databasa(sql server) and the actual image in physical address inside web server, what I need to do is to have the thumbnail image inside the accordin control and as soon as user click the thumbnail see the full size image...