Quantcast
Channel: Project Has Moved
Viewing all 4858 articles
Browse latest View live

Edited Unassigned: AJAXFileUpload Ampersand error [27476]

$
0
0
Hi there,

I've been trying to test out the AJAXFileupload I have on an admin page for a site I'm building but having problems with the & character if it exists in a filename.

In the UploadComplete function I cannot get any characters that are after the & character to show at all from the e.Filename argument.

For example if I upload a filename called 123456&78910.jpg the e.Filename is returning 123456 and that's it. I was trying all sorts of replacement routines earlier thinking it was just that character stopping but when I have outputted e.Filename to a session variable and then checked the variable it's just stopping at the & and not proceeding.

e.g.

```
Protected Sub AjaxFileUpload1_UploadComplete(sender As Object, e As AjaxControlToolkit.AjaxFileUploadEventArgs) Handles AjaxFileUpload1.UploadComplete

Session("outputFilename") = e.Filename

End Function
```

If I response.write Session("outputFilename") on another part of the page then it's showing as above, cutting off as soon as it hits the &.

Regards

Updated Release: July 2013 Release (Jul 25, 2013)

$
0
0

AJAX Control Toolkit Release Notes - July 2013 Release

Version 7.0725

July 2013 release of the AJAX Control Toolkit.
  • AJAX Control Toolkit .NET 4.5– AJAX Control Toolkit for .NET 4.5 and sample site (Recommended).
  • AJAX Control Toolkit .NET 4– AJAX Control Toolkit for .NET 4 and sample site (Recommended).
  • AJAX Control Toolkit .NET 3.5– AJAX Control Toolkit for .NET 3.5 and sample site (Recommended).

Notes:
- Instructions for using the AJAX Control Toolkit with ASP.NET 4.5 can be found at http://stephenwalther.com/archive/2013/07/25/july-2013-release-of-the-ajax-control-toolkit
- The current version of the AJAX Control Toolkit is not compatible with ASP.NET 2.0. The latest version that is compatible with ASP.NET 2.0 can be found here: 20229.
- It is strongly recommended that you use the ToolkitScriptManager instead of the ScriptManager with the Ajax Control Toolkit.
- You must use Visual Studio 2012 to view or modify the source code for the Ajax Control Toolkit.
- Instructions for contributing a bug report can be found at http://www.asp.net/ajaxlibrary/act_contribute_bug.ashx

Getting Started

Learn how to install the toolkit and add the toolkit to the Visual Studio/Visual Web Developer toolbox with the following videos and tutorials.

What's New?

This release of the Ajax Control Toolkit improves the performance of the Ajax Control Toolkit and makes it easier to create custom Ajax Control Toolkit controls.

For details on the new features included with this release, please see Stephen Walther's blog post at http://stephenwalther.com/archive/2013/06/09/june-2013-release-of-the-ajax-control-toolkit
  • Control Bundles - Use Control Bundles to specify the subset of the Ajax Control Toolkit controls that you want to use in your app. Control Bundles can substantially improve the performance of your app by enabling you to download only the scripts that you need.
  • CombineScripts Handler - Use the new AjaxControlToolkit.CombineScripts handler to cache Ajax Control Toolkit scripts for an entire app. To take advantage of the CombineScripts handler, you need to register the handler in your web.config file (see the sample website).

What's Changed?

  • Visual Studio 2012 Solution - Starting with this release, you must use Visual Studio 2012 when working with the Ajax Control Toolkit source code. We no longer maintain separate Visual Studio 2008, Visual Studio 2010, and Visual Studio 2012 solution and project files.
  • Sanitizer Providers - The Sanitizer Providers no longer ship in a separate assembly. The code has been merged into the AjaxControlToolkit.dll assembly. You will need to update your web.config file (see the sample website).

This release of the Ajax Control Toolkit was brought to you by Superexpert Consulting -- we build ASP.NET websites

Updated Wiki: Home

$
0
0

Ajax Control Toolkit

The Ajax Control Toolkit contains a rich set of controls that you can use to build highly responsive and interactive Ajax-enabled Web applications. The Ajax Control Toolkit contains more than 40 controls, including theAutoComplete, CollapsiblePanel, ColorPicker,MaskedEdit, Calendar, Accordion,HTML Editor Extender, and Watermark controls. Using the Ajax Control Toolkit, you can build Ajax-enabled ASP.NET Web Forms applications by dragging-and-dropping Toolkit controls from the Visual Studio Toolbox onto an ASP.NET Web Forms page.

The latest release of the AJAX Control Toolkit is July 2013! Check out some of the new features at the announcement at Stephen Walther's blog post including the improvements to performance with control bundles.

To view an interactive Web site that demonstrates each of the Ajax Control Toolkit controls, visit theAjax Control Toolkit Sample Site. The official website for the Ajax Control Toolkit -- which contains reference documentation, tutorials, and answers to frequently asked questions -- is located at http://www.asp.net/ajaxlibrary/.

Visual Studio 2008 users, click the Downloads tab above and select the .NET 3.5 version of the toolkit.

Visual Studio 2010 users, install the ASP.NET AJAX Control Toolkit in seconds via NuGet:

The easiest way to install the Ajax Control Toolkit into a Visual Studio 2010 project is via NuGet.

It's easy! If you don't have NuGet, it's a very quick installation.

First, from with an ASP.NET Web Forms project in Visual Studio, install the AjaxControlToolkitpackage, either from the GUI or from the Package Manager Console.

Next, for example, register the AjaxControlToolkit at the top of the page (or in the web.config for the whole project)

<%@RegisterTagPrefix="asp"Namespace="AjaxControlToolkit"Assembly="AjaxControlToolkit"%>

Now, add a ToolkitScriptManager and use some of the controls!  Here's how to turn a TextBox into a rich HTML editor.

<asp:ToolkitScriptManagerrunat="Server"/><asp:TextBoxID="txtComments"TextMode="MultiLine"Columns="60"Rows="8"runat="server"/><asp:HtmlEditorExtenderTargetControlID="txtComments"runat="server"/>

Which gives you this:

There's lots more to see in the AJAX Control Toolkit, so have fun exploring...Enjoy!

Updated Release: July 2013 Release (Jul 25, 2013)

$
0
0

AJAX Control Toolkit Release Notes - July 2013 Release

Version 7.0725

July 2013 release of the AJAX Control Toolkit.
  • AJAX Control Toolkit .NET 4.5– AJAX Control Toolkit for .NET 4.5 and sample site (Recommended).
  • AJAX Control Toolkit .NET 4– AJAX Control Toolkit for .NET 4 and sample site (Recommended).
  • AJAX Control Toolkit .NET 3.5– AJAX Control Toolkit for .NET 3.5 and sample site (Recommended).

Notes:
- Instructions for using the AJAX Control Toolkit with ASP.NET 4.5 can be found at http://stephenwalther.com/archive/2012/09/20/september-2012-release-of-the-ajax-control-toolkit.aspx
- The current version of the AJAX Control Toolkit is not compatible with ASP.NET 2.0. The latest version that is compatible with ASP.NET 2.0 can be found here: 20229.
- It is strongly recommended that you use the ToolkitScriptManager instead of the ScriptManager with the Ajax Control Toolkit.
- You must use Visual Studio 2012 to view or modify the source code for the Ajax Control Toolkit.
- Instructions for contributing a bug report can be found at http://www.asp.net/ajaxlibrary/act_contribute_bug.ashx

Getting Started

Learn how to install the toolkit and add the toolkit to the Visual Studio/Visual Web Developer toolbox with the following videos and tutorials.

What's New?

This release of the Ajax Control Toolkit improves the performance of the Ajax Control Toolkit and makes it easier to create custom Ajax Control Toolkit controls.

For details on the new features included with this release, please see Stephen Walther's blog post at http://stephenwalther.com/archive/2013/07/25/july-2013-release-of-the-ajax-control-toolkit
  • Control Bundles - Use Control Bundles to specify the subset of the Ajax Control Toolkit controls that you want to use in your app. Control Bundles can substantially improve the performance of your app by enabling you to download only the scripts that you need.
  • CombineScripts Handler - Use the new AjaxControlToolkit.CombineScripts handler to cache Ajax Control Toolkit scripts for an entire app. To take advantage of the CombineScripts handler, you need to register the handler in your web.config file (see the sample website).

What's Changed?

  • Visual Studio 2012 Solution - Starting with this release, you must use Visual Studio 2012 when working with the Ajax Control Toolkit source code. We no longer maintain separate Visual Studio 2008, Visual Studio 2010, and Visual Studio 2012 solution and project files.
  • Sanitizer Providers - The Sanitizer Providers no longer ship in a separate assembly. The code has been merged into the AjaxControlToolkit.dll assembly. You will need to update your web.config file (see the sample website).

This release of the Ajax Control Toolkit was brought to you by Superexpert Consulting -- we build ASP.NET websites

Released: July 2013 Release (Jul 25, 2013)

$
0
0

AJAX Control Toolkit Release Notes - July 2013 Release

Version 7.0725

July 2013 release of the AJAX Control Toolkit.
  • AJAX Control Toolkit .NET 4.5– AJAX Control Toolkit for .NET 4.5 and sample site (Recommended).
  • AJAX Control Toolkit .NET 4– AJAX Control Toolkit for .NET 4 and sample site (Recommended).
  • AJAX Control Toolkit .NET 3.5– AJAX Control Toolkit for .NET 3.5 and sample site (Recommended).

Notes:
- Instructions for using the AJAX Control Toolkit with ASP.NET 4.5 can be found at http://stephenwalther.com/archive/2012/09/20/september-2012-release-of-the-ajax-control-toolkit.aspx
- The current version of the AJAX Control Toolkit is not compatible with ASP.NET 2.0. The latest version that is compatible with ASP.NET 2.0 can be found here:20229.
- It is strongly recommended that you use the ToolkitScriptManager instead of the ScriptManager with the Ajax Control Toolkit.
- You must use Visual Studio 2012 to view or modify the source code for the Ajax Control Toolkit.
- Instructions for contributing a bug report can be found at http://www.asp.net/ajaxlibrary/act_contribute_bug.ashx

Getting Started

Learn how to install the toolkit and add the toolkit to the Visual Studio/Visual Web Developer toolbox with the following videos and tutorials.

What's New?

This release of the Ajax Control Toolkit improves the performance of the Ajax Control Toolkit and makes it easier to create custom Ajax Control Toolkit controls.

For details on the new features included with this release, please see Stephen Walther's blog post at http://stephenwalther.com/archive/2013/07/25/july-2013-release-of-the-ajax-control-toolkit
  • Control Bundles - Use Control Bundles to specify the subset of the Ajax Control Toolkit controls that you want to use in your app. Control Bundles can substantially improve the performance of your app by enabling you to download only the scripts that you need.
  • CombineScripts Handler - Use the new AjaxControlToolkit.CombineScripts handler to cache Ajax Control Toolkit scripts for an entire app. To take advantage of the CombineScripts handler, you need to register the handler in your web.config file (see the sample website).

What's Changed?

  • Visual Studio 2012 Solution - Starting with this release, you must use Visual Studio 2012 when working with the Ajax Control Toolkit source code. We no longer maintain separate Visual Studio 2008, Visual Studio 2010, and Visual Studio 2012 solution and project files.
  • Sanitizer Providers - The Sanitizer Providers no longer ship in a separate assembly. The code has been merged into the AjaxControlToolkit.dll assembly. You will need to update your web.config file (see the sample website).

This release of the Ajax Control Toolkit was brought to you by Superexpert Consulting --we build ASP.NET websites

Updated Release: July 2013 Release (Jul 25, 2013)

$
0
0

AJAX Control Toolkit Release Notes - July 2013 Release

Version 7.0725

July 2013 release of the AJAX Control Toolkit.
  • AJAX Control Toolkit .NET 4.5– AJAX Control Toolkit for .NET 4.5 and sample site (Recommended).
  • AJAX Control Toolkit .NET 4– AJAX Control Toolkit for .NET 4 and sample site (Recommended).
  • AJAX Control Toolkit .NET 3.5– AJAX Control Toolkit for .NET 3.5 and sample site (Recommended).

Notes:
- Instructions for using the AJAX Control Toolkit with ASP.NET 4.5 can be found at http://stephenwalther.com/archive/2012/09/20/september-2012-release-of-the-ajax-control-toolkit.aspx
- The current version of the AJAX Control Toolkit is not compatible with ASP.NET 2.0. The latest version that is compatible with ASP.NET 2.0 can be found here: 20229.
- It is strongly recommended that you use the ToolkitScriptManager instead of the ScriptManager with the Ajax Control Toolkit.
- You must use Visual Studio 2012 to view or modify the source code for the Ajax Control Toolkit.
- Instructions for contributing a bug report can be found at http://www.asp.net/ajaxlibrary/act_contribute_bug.ashx

Getting Started

Learn how to install the toolkit and add the toolkit to the Visual Studio/Visual Web Developer toolbox with the following videos and tutorials.

What's New?

This release of the Ajax Control Toolkit improves the performance of the Ajax Control Toolkit and makes it easier to create custom Ajax Control Toolkit controls.

For details on the new features included with this release, please see Stephen Walther's blog post at http://stephenwalther.com/archive/2013/07/25/july-2013-release-of-the-ajax-control-toolkit
  • Control Bundles - Use Control Bundles to specify the subset of the Ajax Control Toolkit controls that you want to use in your app. Control Bundles can substantially improve the performance of your app by enabling you to download only the scripts that you need.
  • CombineScripts Handler - Use the new AjaxControlToolkit.CombineScripts handler to cache Ajax Control Toolkit scripts for an entire app. To take advantage of the CombineScripts handler, you need to register the handler in your web.config file (see the sample website).

What's Changed?

  • Visual Studio 2012 Solution - Starting with this release, you must use Visual Studio 2012 when working with the Ajax Control Toolkit source code. We no longer maintain separate Visual Studio 2008, Visual Studio 2010, and Visual Studio 2012 solution and project files.
  • Sanitizer Providers - The Sanitizer Providers no longer ship in a separate assembly. The code has been merged into the AjaxControlToolkit.dll assembly. You will need to update your web.config file (see the sample website).

This release of the Ajax Control Toolkit was brought to you by Superexpert Consulting -- we build ASP.NET websites

Created Unassigned: Accordion not working [27477]

$
0
0
Just updated to the latest version today, and my Accordions stopped working. They are displayed one the page using the asp ScriptManager, and the top pane is expanded, but I cannot expand any other pane. Reverted back to old version, works fine.

Also noticed that when I specify an Accordion or an AccordionPane control in the AjaxControlToolkit.config file I get:

__Offending URL: http://localhost:1364/CSI/ManageAccounts.aspx
Source: AjaxControlToolkit
Message: Could not find control 'Accordion'. Please make sure you entered the correct control name in AjaxControlToolkit.config file.
Inner Exception:
Stack trace: at AjaxControlToolkit.ToolkitScriptManagerConfig.GetControlTypesInBundles(HttpContextBase context, String[] bundles) in f:\TeamCity\buildAgent\work\80acd78aa4c25314\Server\AjaxControlToolkit\ToolkitScriptManager\ToolkitScriptManagerConfig.cs:line 146 at AjaxControlToolkit.ToolkitScriptManagerCombiner.GetScriptReferences(HttpContextBase context, String[] bundles) in f:\TeamCity\buildAgent\work\80acd78aa4c25314\Server\AjaxControlToolkit\ToolkitScriptManager\ToolkitScriptManagerCombiner.cs:line 207 at AjaxControlToolkit.ToolkitScriptManager.OnLoad(EventArgs e) in f:\TeamCity\buildAgent\work\80acd78aa4c25314\Server\AjaxControlToolkit\ToolkitScriptManager\ToolkitScriptManager.cs:line 236 at System.Web.UI.Control.LoadRecursive() at System.Web.UI.Control.LoadRecursive() at System.Web.UI.Control.LoadRecursive() at System.Web.UI.Control.LoadRecursive() at System.Web.UI.Control.LoadRecursive() at System.Web.UI.Page.ProcessRequestMain(Boolean includeStagesBeforeAsyncPoint, Boolean includeStagesAfterAsyncPoint)
__

And:
Offending URL: http://localhost:1364/CSI/ManageAccounts.aspx
Source: AjaxControlToolkit
Message: Could not find control 'AccordionPane'. Please make sure you entered the correct control name in AjaxControlToolkit.config file.
Inner Exception:
Stack trace: at AjaxControlToolkit.ToolkitScriptManagerConfig.GetControlTypesInBundles(HttpContextBase context, String[] bundles) in f:\TeamCity\buildAgent\work\80acd78aa4c25314\Server\AjaxControlToolkit\ToolkitScriptManager\ToolkitScriptManagerConfig.cs:line 146 at AjaxControlToolkit.ToolkitScriptManagerCombiner.GetScriptReferences(HttpContextBase context, String[] bundles) in f:\TeamCity\buildAgent\work\80acd78aa4c25314\Server\AjaxControlToolkit\ToolkitScriptManager\ToolkitScriptManagerCombiner.cs:line 207 at AjaxControlToolkit.ToolkitScriptManager.OnLoad(EventArgs e) in f:\TeamCity\buildAgent\work\80acd78aa4c25314\Server\AjaxControlToolkit\ToolkitScriptManager\ToolkitScriptManager.cs:line 236 at System.Web.UI.Control.LoadRecursive() at System.Web.UI.Control.LoadRecursive() at System.Web.UI.Control.LoadRecursive() at System.Web.UI.Control.LoadRecursive() at System.Web.UI.Control.LoadRecursive() at System.Web.UI.Page.ProcessRequestMain(Boolean includeStagesBeforeAsyncPoint, Boolean includeStagesAfterAsyncPoint)


Here's my ControlBundle:

<controlBundle name="ManageAccountsBundle">
<control name="ComboBox" />
<control name="CalendarExtender" />
<control name="TextBoxWatermarkExtender" />
<control name="MaskedEditExtender" />
<control name="Accordion" />
<control name="AccordionPane" />
</controlBundle>

Commented Unassigned: Accordion not working [27477]

$
0
0
Just updated to the latest version today, and my Accordions stopped working. They are displayed one the page using the asp ScriptManager, and the top pane is expanded, but I cannot expand any other pane. Reverted back to old version, works fine.

Also noticed that when I specify an Accordion or an AccordionPane control in the AjaxControlToolkit.config file I get:

__Offending URL: http://localhost:1364/CSI/ManageAccounts.aspx
Source: AjaxControlToolkit
Message: Could not find control 'Accordion'. Please make sure you entered the correct control name in AjaxControlToolkit.config file.
Inner Exception:
Stack trace: at AjaxControlToolkit.ToolkitScriptManagerConfig.GetControlTypesInBundles(HttpContextBase context, String[] bundles) in f:\TeamCity\buildAgent\work\80acd78aa4c25314\Server\AjaxControlToolkit\ToolkitScriptManager\ToolkitScriptManagerConfig.cs:line 146 at AjaxControlToolkit.ToolkitScriptManagerCombiner.GetScriptReferences(HttpContextBase context, String[] bundles) in f:\TeamCity\buildAgent\work\80acd78aa4c25314\Server\AjaxControlToolkit\ToolkitScriptManager\ToolkitScriptManagerCombiner.cs:line 207 at AjaxControlToolkit.ToolkitScriptManager.OnLoad(EventArgs e) in f:\TeamCity\buildAgent\work\80acd78aa4c25314\Server\AjaxControlToolkit\ToolkitScriptManager\ToolkitScriptManager.cs:line 236 at System.Web.UI.Control.LoadRecursive() at System.Web.UI.Control.LoadRecursive() at System.Web.UI.Control.LoadRecursive() at System.Web.UI.Control.LoadRecursive() at System.Web.UI.Control.LoadRecursive() at System.Web.UI.Page.ProcessRequestMain(Boolean includeStagesBeforeAsyncPoint, Boolean includeStagesAfterAsyncPoint)
__

And:
Offending URL: http://localhost:1364/CSI/ManageAccounts.aspx
Source: AjaxControlToolkit
Message: Could not find control 'AccordionPane'. Please make sure you entered the correct control name in AjaxControlToolkit.config file.
Inner Exception:
Stack trace: at AjaxControlToolkit.ToolkitScriptManagerConfig.GetControlTypesInBundles(HttpContextBase context, String[] bundles) in f:\TeamCity\buildAgent\work\80acd78aa4c25314\Server\AjaxControlToolkit\ToolkitScriptManager\ToolkitScriptManagerConfig.cs:line 146 at AjaxControlToolkit.ToolkitScriptManagerCombiner.GetScriptReferences(HttpContextBase context, String[] bundles) in f:\TeamCity\buildAgent\work\80acd78aa4c25314\Server\AjaxControlToolkit\ToolkitScriptManager\ToolkitScriptManagerCombiner.cs:line 207 at AjaxControlToolkit.ToolkitScriptManager.OnLoad(EventArgs e) in f:\TeamCity\buildAgent\work\80acd78aa4c25314\Server\AjaxControlToolkit\ToolkitScriptManager\ToolkitScriptManager.cs:line 236 at System.Web.UI.Control.LoadRecursive() at System.Web.UI.Control.LoadRecursive() at System.Web.UI.Control.LoadRecursive() at System.Web.UI.Control.LoadRecursive() at System.Web.UI.Control.LoadRecursive() at System.Web.UI.Page.ProcessRequestMain(Boolean includeStagesBeforeAsyncPoint, Boolean includeStagesAfterAsyncPoint)


Here's my ControlBundle:

<controlBundle name="ManageAccountsBundle">
<control name="ComboBox" />
<control name="CalendarExtender" />
<control name="TextBoxWatermarkExtender" />
<control name="MaskedEditExtender" />
<control name="Accordion" />
<control name="AccordionPane" />
</controlBundle>
Comments: Please take a look at the Accordion.aspx sample page included in the Ajax Control Toolkit sample site. It uses a Control Bundle which looks like this: <controlBundle name="Accordion"> <control name="AccordionExtender"></control> <control name="CollapsiblePanelExtender"></control> </controlBundle> Notice that it is using an AccordionExtender instead of an Accordion.

Edited Unassigned: MaskedEdit not working in April 2013, June 2013 and July 2013 release!!! [27419]

$
0
0
I have a problem’s with new version (April 2013) of MaskedEdit. Date and Time value is not verified, TextBox is not cleared on wrong value and also on exit from TextBox stays __.__.____. The same happened when I use code from sample page with new version of AjaxControlToolkit.dll. What I’m doing wrong?
My code:
```
<form id="form1" runat="server">
<ajaxToolkit:ToolkitScriptManager ID="ScriptManager1" runat="server" ScriptMode="Release" LoadScriptsBeforeUI="false"
EnablePageMethods="true" EnablePartialRendering="true" EnableScriptGlobalization="true" EnableScriptLocalization="true">
</ajaxToolkit:ToolkitScriptManager>
<div>
<asp:TextBox ID="txtDate" runat="server" Width="78px"></asp:TextBox>
<asp:ImageButton ID="ibKoledar" runat="server" CausesValidation="False" ImageAlign="AbsMiddle" />
<asp:TextBox ID="txtTime" runat="server" Width="42px"></asp:TextBox>
<ajaxToolkit:CalendarExtender ID="calendarExtenderDatum" runat="server" CssClass="Koledar" Format="dd.MM.yyyy"
PopupButtonID="ibKoledar" TargetControlID="txtDate" FirstDayOfWeek="Monday">
</ajaxToolkit:CalendarExtender>
<ajaxToolkit:MaskedEditExtender EnableViewState="false" ID="meeDate" runat="server" Century="2000" ClearTextOnInvalid="True" ClipboardEnabled="False" CultureDateFormat="dd.MM.yyyy"
CultureName="sl-SI" Mask="99/99/9999" MaskType="Date" TargetControlID="txtDate">
</ajaxToolkit:MaskedEditExtender>
<ajaxToolkit:MaskedEditValidator EnableViewState="false" ID="mevDatum" runat="server" ControlExtender="meeDate" ControlToValidate="txtDate" Display="Dynamic"></ajaxToolkit:MaskedEditValidator>
<ajaxToolkit:MaskedEditExtender EnableViewState="false" ID="meeTime" runat="server" AutoComplete="true" ClearTextOnInvalid="True" Mask="99:99" MaskType="Time" TargetControlID="txtTime"></ajaxToolkit:MaskedEditExtender>
<ajaxToolkit:MaskedEditValidator EnableViewState="false" ID="mevTime" runat="server" ControlExtender="meeTime" ControlToValidate="txtTime" Display="Dynamic"></ajaxToolkit:MaskedEditValidator>
<asp:Button ID="Button1" runat="server" Text="Button" />
</div>
</form>
```

Commented Unassigned: MaskedEdit not working in April 2013, June 2013 and July 2013 release!!! [27419]

$
0
0
I have a problem’s with new version (April 2013) of MaskedEdit. Date and Time value is not verified, TextBox is not cleared on wrong value and also on exit from TextBox stays __.__.____. The same happened when I use code from sample page with new version of AjaxControlToolkit.dll. What I’m doing wrong?
My code:
```
<form id="form1" runat="server">
<ajaxToolkit:ToolkitScriptManager ID="ScriptManager1" runat="server" ScriptMode="Release" LoadScriptsBeforeUI="false"
EnablePageMethods="true" EnablePartialRendering="true" EnableScriptGlobalization="true" EnableScriptLocalization="true">
</ajaxToolkit:ToolkitScriptManager>
<div>
<asp:TextBox ID="txtDate" runat="server" Width="78px"></asp:TextBox>
<asp:ImageButton ID="ibKoledar" runat="server" CausesValidation="False" ImageAlign="AbsMiddle" />
<asp:TextBox ID="txtTime" runat="server" Width="42px"></asp:TextBox>
<ajaxToolkit:CalendarExtender ID="calendarExtenderDatum" runat="server" CssClass="Koledar" Format="dd.MM.yyyy"
PopupButtonID="ibKoledar" TargetControlID="txtDate" FirstDayOfWeek="Monday">
</ajaxToolkit:CalendarExtender>
<ajaxToolkit:MaskedEditExtender EnableViewState="false" ID="meeDate" runat="server" Century="2000" ClearTextOnInvalid="True" ClipboardEnabled="False" CultureDateFormat="dd.MM.yyyy"
CultureName="sl-SI" Mask="99/99/9999" MaskType="Date" TargetControlID="txtDate">
</ajaxToolkit:MaskedEditExtender>
<ajaxToolkit:MaskedEditValidator EnableViewState="false" ID="mevDatum" runat="server" ControlExtender="meeDate" ControlToValidate="txtDate" Display="Dynamic"></ajaxToolkit:MaskedEditValidator>
<ajaxToolkit:MaskedEditExtender EnableViewState="false" ID="meeTime" runat="server" AutoComplete="true" ClearTextOnInvalid="True" Mask="99:99" MaskType="Time" TargetControlID="txtTime"></ajaxToolkit:MaskedEditExtender>
<ajaxToolkit:MaskedEditValidator EnableViewState="false" ID="mevTime" runat="server" ControlExtender="meeTime" ControlToValidate="txtTime" Display="Dynamic"></ajaxToolkit:MaskedEditValidator>
<asp:Button ID="Button1" runat="server" Text="Button" />
</div>
</form>
```
Comments: Same issue with July 2013 release. Could someone post the answer?!

Created Unassigned: CalendarExtender doesn't work anymore [27478]

$
0
0
Hi, I just update the project to the last version of the toolkit and the CalendarExtender doesn't work anymore.

No error is reported, but when I click on the textbox the calendar is not showing.



```
<%@ Register TagPrefix="asp" Namespace="AjaxControlToolkit" Assembly="AjaxControlToolkit"%>
-----------
<asp:TextBox ID="txtSelectedDay" runat="server" Height="24px"></asp:TextBox>

<ajaxToolkit:CalendarExtender runat="server" ID="calendarExtender"
TargetControlID="txtSelectedDay"
CssClass=""
Format="MMMM d, yyyy" />

<asp:ScriptManager ID="ScriptManager1" runat="server">
```


it worked perfectly in the previous version.


Just one note: I see from http://www.asp.net/ajaxLibrary/AjaxControlToolkitSampleSite/Calendar/Calendar.aspx that the CalendarExtender is not present anymore :|

But I can't find this "Calendar" control in the assembly

Commented Unassigned: error raising upload complete event and start new upload [27438]

$
0
0
I have the same issue as Brian Potter on http://stephenwalther.com/archive/2013/04/30/april-2013-release-of-the-ajax-control-toolkit. I have registered AjaxFileUploadHandler.axd in web.config but it makes no difference. I suspect there is a security issues but where? I don't have an App_Data and am trying to save to ~/Images but the error occurs at the start. The upload complete method is not reached.
Comments: Huh.. I've been struggling for a day to fix this issue.. :( :( Resolution suggested in few posts was to add -> <add name="AjaxFileUploadHandler" verb="*" path="AjaxFileUploadHandler.axd" type="AjaxControlToolkit.AjaxFileUploadHandler, AjaxControlToolkit"/> in handlers. I had added it in config like this - <system.webServer> <validation validateIntegratedModeConfiguration="false"/> <handlers> <add name="AjaxFileUploadHandler" verb="*" path="AjaxFileUploadHandler.axd" type="AjaxControlToolkit.AjaxFileUploadHandler, AjaxControlToolkit"/> </handlers> </system.webServer> But of no luck. Finally i found the actual resolution. It still adding the handler but in SYSTEM.WEB section as well like - <system.web> <httpHandlers> <add verb="*" path="AjaxFileUploadHandler.axd" type="AjaxControlToolkit.AjaxFileUploadHandler, AjaxControlToolkit"/> </httpHandlers> </system.web> This worked like a charm.. Refer to - http://stackoverflow.com/questions/16814310/ajaxcontroltoolkit-error-raising-upload-complete-event-and-start-new-upload for more info..

Created Unassigned: RounderCornersExtender no longer works [27479]

$
0
0
I downloaded and installed the new AJAX control toolkit (version 4.1.7.725) released in July 2013.

None of the rounder corner extenders (RCE) I have in my ASP.NET application work anymore.

When I load the page with a rounded corner extender on it, I get this error:

"Unhandled exception at line 5906, column 5 in http://localhost:58660/Private/English/LandingPages/Owner_e.aspx?BPID=143&RK=0

0x800a138f - JavaScript runtime error: Unable to get property 'UI' of undefined or null reference"

Here is the line that is highlighted that causes the error:

"$create(Sys.Extended.UI.RoundedCornersBehavior, {"BorderColor":"#CCCCCC","Radius":20,"id":"ctl00_PageBody_ucProperties_e_rcePropertiesCalendar"}, null, null, $get("ctl00_PageBody_ucProperties_e_pnlPropertiesCalendar"));"

I can't possibly be the only person with this problem ... does anyone have a solution?

Erik

Source code checked in, #5106f7b5aff30c25fd5d290ca5270e07cd0483e7

$
0
0
Merge branch 'master' of https://git01.codeplex.com/ajaxcontroltoolkit Conflicts: AjaxControlToolkit.nuspec AjaxControlToolkit.vsmdi Client/MicrosoftAjax.Extended/Accordion/AccordionBehavior.pre.js Client/MicrosoftAjax.Extended/AlwaysVisibleControl/AlwaysVisibleControlBehavior.pre.js Client/MicrosoftAjax.Extended/Animation/AnimationBehavior.pre.js Client/MicrosoftAjax.Extended/Animation/Animations.pre.js Client/MicrosoftAjax.Extended/AutoComplete/AutoCompleteBehavior.pre.js Client/MicrosoftAjax.Extended/BalloonPopup/BalloonPopup.css Client/MicrosoftAjax.Extended/BalloonPopup/BalloonPopupExtenderBehavior.pre.js Client/MicrosoftAjax.Extended/BalloonPopup/Cloud/BalloonPopup.css Client/MicrosoftAjax.Extended/BalloonPopup/Rectangle/BalloonPopup.css Client/MicrosoftAjax.Extended/Calendar/Calendar.css Client/MicrosoftAjax.Extended/Calendar/CalendarBehavior.pre.js Client/MicrosoftAjax.Extended/CascadingDropDown/CascadingDropDownBehavior.pre.js Client/MicrosoftAjax.Extended/CollapsiblePanel/CollapsiblePanelBehavior.pre.js Client/MicrosoftAjax.Extended/ColorPicker/ColorPicker.css Client/MicrosoftAjax.Extended/ColorPicker/ColorPickerBehavior.pre.js Client/MicrosoftAjax.Extended/Common/Common.pre.js Client/MicrosoftAjax.Extended/Common/DateTime.pre.js Client/MicrosoftAjax.Extended/Common/Threading.pre.js Client/MicrosoftAjax.Extended/Compat/DragDrop/DragDropScripts.pre.js Client/MicrosoftAjax.Extended/Compat/Timer/Timer.pre.js Client/MicrosoftAjax.Extended/ConfirmButton/confirmButtonBehavior.pre.js Client/MicrosoftAjax.Extended/DragPanel/FloatingBehavior.pre.js Client/MicrosoftAjax.Extended/DropDown/DropDown.css Client/MicrosoftAjax.Extended/DropDown/DropDownBehavior.pre.js Client/MicrosoftAjax.Extended/DropShadow/DropShadowBehavior.pre.js Client/MicrosoftAjax.Extended/DynamicPopulate/DynamicPopulateBehavior.pre.js Client/MicrosoftAjax.Extended/ExtendedControls.pre.js Client/MicrosoftAjax.Extended/ExtenderBase/BaseScripts.pre.js Client/MicrosoftAjax.Extended/ExtenderBase/BaseScriptsResources.ar.resx Client/MicrosoftAjax.Extended/ExtenderBase/BaseScriptsResources.cs.resx Client/MicrosoftAjax.Extended/ExtenderBase/BaseScriptsResources.de.resx Client/MicrosoftAjax.Extended/ExtenderBase/BaseScriptsResources.es.resx Client/MicrosoftAjax.Extended/ExtenderBase/BaseScriptsResources.fr.resx Client/MicrosoftAjax.Extended/ExtenderBase/BaseScriptsResources.he.resx Client/MicrosoftAjax.Extended/ExtenderBase/BaseScriptsResources.hi.resx Client/MicrosoftAjax.Extended/ExtenderBase/BaseScriptsResources.it.resx Client/MicrosoftAjax.Extended/ExtenderBase/BaseScriptsResources.ja.resx Client/MicrosoftAjax.Extended/ExtenderBase/BaseScriptsResources.ko.resx Client/MicrosoftAjax.Extended/ExtenderBase/BaseScriptsResources.nl.resx Client/MicrosoftAjax.Extended/ExtenderBase/BaseScriptsResources.pt.resx Client/MicrosoftAjax.Extended/ExtenderBase/BaseScriptsResources.resx Client/MicrosoftAjax.Extended/ExtenderBase/BaseScriptsResources.ru.resx Client/MicrosoftAjax.Extended/ExtenderBase/BaseScriptsResources.tr-TR.resx Client/MicrosoftAjax.Extended/ExtenderBase/BaseScriptsResources.zh-CHS.resx Client/MicrosoftAjax.Extended/ExtenderBase/BaseScriptsResources.zh-CHT.resx Client/MicrosoftAjax.Extended/FilteredTextBox/FilteredTextBoxBehavior.pre.js Client/MicrosoftAjax.Extended/HoverExtender/HoverBehavior.pre.js Client/MicrosoftAjax.Extended/HoverMenu/HoverMenuBehavior.pre.js Client/MicrosoftAjax.Extended/HtmlEditorExtender/HtmlEditorExtender.css Client/MicrosoftAjax.Extended/HtmlEditorExtender/HtmlEditorExtenderBehavior.Pre.js Client/MicrosoftAjax.Extended/ListSearch/ListSearchBehavior.pre.js Client/MicrosoftAjax.Extended/MaskedEdit/MaskedEditBehavior.pre.js Client/MicrosoftAjax.Extended/MaskedEdit/MaskedEditValidator.pre.js Client/MicrosoftAjax.Extended/ModalPopup/ModalPopupBehavior.pre.js Client/MicrosoftAjax.Extended/MultiHandleSlider/MultiHandleSlider.css Client/MicrosoftAjax.Extended/MultiHandleSlider/MultiHandleSliderBehavior.pre.js Client/MicrosoftAjax.Extended/MutuallyExclusiveCheckBox/MutuallyExclusiveCheckBoxBehavior.pre.js Client/MicrosoftAjax.Extended/NumericUpDown/NumericUpDownBehavior.pre.js Client/MicrosoftAjax.Extended/PagingBulletedList/PagingBulletedListBehavior.pre.js Client/MicrosoftAjax.Extended/PasswordStrength/PasswordStrengthExtenderBehavior.pre.js Client/MicrosoftAjax.Extended/PopupControl/PopupControlBehavior.pre.js Client/MicrosoftAjax.Extended/PopupExtender/PopupBehavior.pre.js Client/MicrosoftAjax.Extended/Properties/AssemblyInfo.cs Client/MicrosoftAjax.Extended/Rating/RatingBehavior.pre.js Client/MicrosoftAjax.Extended/ResizableControl/ResizableControlBehavior.pre.js Client/MicrosoftAjax.Extended/RoundedCorners/RoundedCornersBehavior.pre.js Client/MicrosoftAjax.Extended/ScriptResources/ScriptResources.ar.resx Client/MicrosoftAjax.Extended/ScriptResources/ScriptResources.cs.resx Client/MicrosoftAjax.Extended/ScriptResources/ScriptResources.de.resx Client/MicrosoftAjax.Extended/ScriptResources/ScriptResources.es.resx Client/MicrosoftAjax.Extended/ScriptResources/ScriptResources.fr.resx Client/MicrosoftAjax.Extended/ScriptResources/ScriptResources.he.resx Client/MicrosoftAjax.Extended/ScriptResources/ScriptResources.hi.resx Client/MicrosoftAjax.Extended/ScriptResources/ScriptResources.it.resx Client/MicrosoftAjax.Extended/ScriptResources/ScriptResources.ja.resx Client/MicrosoftAjax.Extended/ScriptResources/ScriptResources.ko.resx Client/MicrosoftAjax.Extended/ScriptResources/ScriptResources.nl.resx Client/MicrosoftAjax.Extended/ScriptResources/ScriptResources.pt.resx Client/MicrosoftAjax.Extended/ScriptResources/ScriptResources.resx Client/MicrosoftAjax.Extended/ScriptResources/ScriptResources.ru.resx Client/MicrosoftAjax.Extended/ScriptResources/ScriptResources.tr-TR.resx Client/MicrosoftAjax.Extended/ScriptResources/ScriptResources.zh-CHS.resx Client/MicrosoftAjax.Extended/ScriptResources/ScriptResources.zh-CHT.resx Client/MicrosoftAjax.Extended/Seadragon/Seadragon.Buttons.pre.js Client/MicrosoftAjax.Extended/Seadragon/Seadragon.Config.pre.js Client/MicrosoftAjax.Extended/Seadragon/Seadragon.DeepZoom.pre.js Client/MicrosoftAjax.Extended/Seadragon/Seadragon.DisplayRect.pre.js Client/MicrosoftAjax.Extended/Seadragon/Seadragon.Drawer.pre.js Client/MicrosoftAjax.Extended/Seadragon/Seadragon.ImageLoader.pre.js Client/MicrosoftAjax.Extended/Seadragon/Seadragon.MouseTracker.pre.js Client/MicrosoftAjax.Extended/Seadragon/Seadragon.Point.pre.js Client/MicrosoftAjax.Extended/Seadragon/Seadragon.Profiler.pre.js Client/MicrosoftAjax.Extended/Seadragon/Seadragon.Rect.pre.js Client/MicrosoftAjax.Extended/Seadragon/Seadragon.Spring.pre.js Client/MicrosoftAjax.Extended/Seadragon/Seadragon.Strings.pre.js Client/MicrosoftAjax.Extended/Seadragon/Seadragon.TileSource.pre.js Client/MicrosoftAjax.Extended/Seadragon/Seadragon.Utils.pre.js Client/MicrosoftAjax.Extended/Seadragon/Seadragon.Viewport.pre.js Client/MicrosoftAjax.Extended/Seadragon/Seadragon.pre.js Client/MicrosoftAjax.Extended/SlideShow/SlideShowBehavior.pre.js Client/MicrosoftAjax.Extended/Slider/Slider.css Client/MicrosoftAjax.Extended/Slider/SliderBehavior.pre.js Client/MicrosoftAjax.Extended/Tabs/Tabs.css Client/MicrosoftAjax.Extended/Tabs/Tabs.pre.js Client/MicrosoftAjax.Extended/TextboxWatermark/TextboxWatermark.pre.js Client/MicrosoftAjax.Extended/ToggleButton/ToggleButton.pre.js Client/MicrosoftAjax.Extended/UpdatePanelAnimation/UpdatePanelAnimationBehavior.pre.js Client/MicrosoftAjax.Extended/ValidatorCallout/ValidatorCallout.css Client/MicrosoftAjax.Extended/ValidatorCallout/ValidatorCalloutBehavior.pre.js Client/MicrosoftAjax.Extended/web.config Client/MicrosoftAjax/DataContext/MicrosoftAjaxDataContext.pre.js Client/MicrosoftAjax/Extensions/Array.js Client/MicrosoftAjax/Extensions/Boolean.js Client/MicrosoftAjax/Extensions/Compat/Browser.js Client/MicrosoftAjax/Extensions/Date.Globalization.js Client/MicrosoftAjax/Extensions/Date.HijriCalendar.js Client/MicrosoftAjax/Extensions/Date.HijriCalendar.pre.js Client/MicrosoftAjax/Extensions/Date.UmAlQuraCalendar.js Client/MicrosoftAjax/Extensions/Date.UmAlQuraCalendar.pre.js Client/MicrosoftAjax/Extensions/Date.js Client/MicrosoftAjax/Extensions/Error.js Client/MicrosoftAjax/Extensions/Function.js Client/MicrosoftAjax/Extensions/Global.js Client/MicrosoftAjax/Extensions/MicrosoftAjax.pre.js Client/MicrosoftAjax/Extensions/MicrosoftAjaxApplicationServices.pre.js Client/MicrosoftAjax/Extensions/MicrosoftAjaxComponentModel.pre.js Client/MicrosoftAjax/Extensions/MicrosoftAjaxCore.pre.js Client/MicrosoftAjax/Extensions/MicrosoftAjaxGlobalization.pre.js Client/MicrosoftAjax/Extensions/MicrosoftAjaxHistory.pre.js Client/MicrosoftAjax/Extensions/MicrosoftAjaxNetwork.pre.js Client/MicrosoftAjax/Extensions/MicrosoftAjaxSerialization.pre.js Client/MicrosoftAjax/Extensions/MicrosoftAjaxTimer.pre.js Client/MicrosoftAjax/Extensions/MicrosoftAjaxWebForms.pre.js Client/MicrosoftAjax/Extensions/MicrosoftAjaxWebServices.pre.js Client/MicrosoftAjax/Extensions/Number.Globalization.js Client/MicrosoftAjax/Extensions/Number.js Client/MicrosoftAjax/Extensions/Object.js Client/MicrosoftAjax/Extensions/RegExp.js Client/MicrosoftAjax/Extensions/String.Globalization.js Client/MicrosoftAjax/Extensions/String.js Client/MicrosoftAjax/Extensions/Sys/Application.History.js Client/MicrosoftAjax/Extensions/Sys/Application.js Client/MicrosoftAjax/Extensions/Sys/ApplicationLoadEventArgs.js Client/MicrosoftAjax/Extensions/Sys/CancelEventArgs.js Client/MicrosoftAjax/Extensions/Sys/CollectionChange.js Client/MicrosoftAjax/Extensions/Sys/CommandEventArgs.js Client/MicrosoftAjax/Extensions/Sys/Component.js Client/MicrosoftAjax/Extensions/Sys/CultureInfo.js Client/MicrosoftAjax/Extensions/Sys/Debug.js Client/MicrosoftAjax/Extensions/Sys/Enum.js Client/MicrosoftAjax/Extensions/Sys/EventArgs.js Client/MicrosoftAjax/Extensions/Sys/EventHandlerList.js Client/MicrosoftAjax/Extensions/Sys/HistoryEventArgs.js Client/MicrosoftAjax/Extensions/Sys/IContainer.js Client/MicrosoftAjax/Extensions/Sys/IDisposable.js Client/MicrosoftAjax/Extensions/Sys/INotifyDisposing.js Client/MicrosoftAjax/Extensions/Sys/INotifyPropertyChange.js Client/MicrosoftAjax/Extensions/Sys/Net/NetworkRequestEventArgs.js Client/MicrosoftAjax/Extensions/Sys/Net/WebRequest.js Client/MicrosoftAjax/Extensions/Sys/Net/WebRequestExecutor.js Client/MicrosoftAjax/Extensions/Sys/Net/WebRequestManager.js Client/MicrosoftAjax/Extensions/Sys/Net/WebServiceError.js Client/MicrosoftAjax/Extensions/Sys/Net/WebServiceProxy.js Client/MicrosoftAjax/Extensions/Sys/Net/XMLHttpExecutor.js Client/MicrosoftAjax/Extensions/Sys/NotifyCollectionChangedAction.js Client/MicrosoftAjax/Extensions/Sys/NotifyCollectionChangedEventArgs.js Client/MicrosoftAjax/Extensions/Sys/Observer.js Client/MicrosoftAjax/Extensions/Sys/PropertyChangedEventArgs.js Client/MicrosoftAjax/Extensions/Sys/ScriptLoader.js Client/MicrosoftAjax/Extensions/Sys/ScriptLoaderTask.js Client/MicrosoftAjax/Extensions/Sys/Serialization/JavaScriptSerializer.js Client/MicrosoftAjax/Extensions/Sys/Services/AuthenticationService.js Client/MicrosoftAjax/Extensions/Sys/Services/Compat.js Client/MicrosoftAjax/Extensions/Sys/Services/ProfileService.js Client/MicrosoftAjax/Extensions/Sys/Services/RoleService.js Client/MicrosoftAjax/Extensions/Sys/StringBuilder.js Client/MicrosoftAjax/Extensions/Sys/UI/Behavior.js Client/MicrosoftAjax/Extensions/Sys/UI/Bounds.js Client/MicrosoftAjax/Extensions/Sys/UI/Control.js Client/MicrosoftAjax/Extensions/Sys/UI/Controls/Timer.js Client/MicrosoftAjax/Extensions/Sys/UI/Controls/UpdateProgress.js Client/MicrosoftAjax/Extensions/Sys/UI/DomElement.js Client/MicrosoftAjax/Extensions/Sys/UI/DomEvent.js Client/MicrosoftAjax/Extensions/Sys/UI/Key.js Client/MicrosoftAjax/Extensions/Sys/UI/MouseButton.js Client/MicrosoftAjax/Extensions/Sys/UI/Point.js Client/MicrosoftAjax/Extensions/Sys/UI/VisibilityMode.js Client/MicrosoftAjax/Extensions/Sys/WebForms/BeginRequestEventArgs.js Client/MicrosoftAjax/Extensions/Sys/WebForms/EndRequestEventArgs.js Client/MicrosoftAjax/Extensions/Sys/WebForms/InitializeRequestEventArgs.js Client/MicrosoftAjax/Extensions/Sys/WebForms/PageLoadedEventArgs.js Client/MicrosoftAjax/Extensions/Sys/WebForms/PageLoadingEventArgs.js Client/MicrosoftAjax/Extensions/Sys/WebForms/PageRequestManager.js Client/MicrosoftAjax/Extensions/Sys/XMLHttpRequest.js Client/MicrosoftAjax/Extensions/Type.js Client/MicrosoftAjax/Loader/ComponentSet.js Client/MicrosoftAjax/Loader/Definitions.js Client/MicrosoftAjax/Loader/ElementSet.js Client/MicrosoftAjax/Loader/RegisterPlugin.js Client/MicrosoftAjax/Loader/Start.pre.js Client/MicrosoftAjax/Loader/loader.js Client/MicrosoftAjax/Loader/typecompat.js Client/MicrosoftAjax/OpenData/MicrosoftAjaxOpenData.pre.js Client/MicrosoftAjax/Resources/DataContext.Res.debug.resx Client/MicrosoftAjax/Resources/DataContext.Res.resx Client/MicrosoftAjax/Resources/OpenData.Res.debug.resx Client/MicrosoftAjax/Resources/OpenData.Res.resx Client/MicrosoftAjax/Resources/Res.debug.resx Client/MicrosoftAjax/Resources/Res.resx Client/MicrosoftAjax/Resources/Templates.Res.debug.resx Client/MicrosoftAjax/Resources/Templates.Res.resx Client/MicrosoftAjax/Resources/WebForms.Res.debug.resx Client/MicrosoftAjax/Resources/WebForms.Res.resx Client/MicrosoftAjax/Templates/Application_MarkupExtensions.js Client/MicrosoftAjax/Templates/Binding.js Client/MicrosoftAjax/Templates/BindingMode.js Client/MicrosoftAjax/Templates/DOMProcessor.js Client/MicrosoftAjax/Templates/DataView.js Client/MicrosoftAjax/Templates/DataViewEventArgs.js Client/MicrosoftAjax/Templates/ITemplateContextConsumer.js Client/MicrosoftAjax/Templates/MicrosoftAjaxTemplates.pre.js Client/MicrosoftAjax/Templates/Net/WebRequestEventArgs.js Client/MicrosoftAjax/Templates/Net/WebServiceOperation.js Client/MicrosoftAjax/Templates/Template.js Client/MicrosoftAjax/Templates/TemplateContext.js Client/MicrosoftAjax/Templates/data/ChangeOperation.js Client/MicrosoftAjax/Templates/data/ChangeOperationType.js Client/MicrosoftAjax/Templates/data/DataContext.js Client/MicrosoftAjax/Templates/data/IDataProvider.js Client/MicrosoftAjax/Templates/data/MergeOption.js Client/MicrosoftAjax/Templates/data/OpenDataActionResult.js Client/MicrosoftAjax/Templates/data/OpenDataActionSequence.js Client/MicrosoftAjax/Templates/data/OpenDataBatchReader.js Client/MicrosoftAjax/Templates/data/OpenDataBatchWriter.js Client/MicrosoftAjax/Templates/data/OpenDataContext.js Client/MicrosoftAjax/Templates/data/OpenDataInvokeParametersBuilder.js Client/MicrosoftAjax/Templates/data/OpenDataQueryBuilder.js Client/MicrosoftAjax/Templates/data/OpenDataServiceProxy.js Client/MicrosoftAjax/Templates/data/_OpenDataUtil.js Client/MicrosoftAjax/web.config LICENSE.txt Package35.bat Package40.bat Package45.bat ReadMe.html SampleWebSites/AjaxControlToolkitSampleSite/Accordion/Accordion.aspx SampleWebSites/AjaxControlToolkitSampleSite/AjaxFileUpload/AjaxFileUpload.aspx SampleWebSites/AjaxControlToolkitSampleSite/AjaxFileUpload/AjaxFileUpload.aspx.cs SampleWebSites/AjaxControlToolkitSampleSite/AlwaysVisibleControl/AlwaysVisibleControl.aspx SampleWebSites/AjaxControlToolkitSampleSite/AlwaysVisibleControl/AlwaysVisibleControl.aspx.cs SampleWebSites/AjaxControlToolkitSampleSite/Animation/Animation.aspx SampleWebSites/AjaxControlToolkitSampleSite/App_Code/AutoComplete.cs SampleWebSites/AjaxControlToolkitSampleSite/App_Code/CarsService.cs SampleWebSites/AjaxControlToolkitSampleSite/App_Code/CommonPage.cs SampleWebSites/AjaxControlToolkitSampleSite/App_Code/HTMLEditor.CustomButtonsAndPopups.cs SampleWebSites/AjaxControlToolkitSampleSite/App_Code/HTMLEditor.Samples.cs SampleWebSites/AjaxControlToolkitSampleSite/App_Code/NumericUpDown.cs SampleWebSites/AjaxControlToolkitSampleSite/App_Code/SessionProfileProvider.cs SampleWebSites/AjaxControlToolkitSampleSite/App_Code/TodoItems.xsd SampleWebSites/AjaxControlToolkitSampleSite/App_Code/TodoItems.xss SampleWebSites/AjaxControlToolkitSampleSite/App_Code/TodoXmlDataObject.cs SampleWebSites/AjaxControlToolkitSampleSite/App_Data/CarsService.xml SampleWebSites/AjaxControlToolkitSampleSite/App_Data/TodoItems.xml SampleWebSites/AjaxControlToolkitSampleSite/App_Scripts/HTMLEditor.scripts/InsertDate.js SampleWebSites/AjaxControlToolkitSampleSite/App_Scripts/HTMLEditor.scripts/InsertIcon.js SampleWebSites/AjaxControlToolkitSampleSite/App_Themes/SampleSiteTheme/CollapsiblePanel.skin SampleWebSites/AjaxControlToolkitSampleSite/App_Themes/SampleSiteTheme/Menu.ContextMenu.css SampleWebSites/AjaxControlToolkitSampleSite/App_Themes/SampleSiteTheme/Menu.ContextMenu.skin SampleWebSites/AjaxControlToolkitSampleSite/App_Themes/SampleSiteTheme/ToolkitScriptManager.skin SampleWebSites/AjaxControlToolkitSampleSite/AreaChart/AreaChart.aspx SampleWebSites/AjaxControlToolkitSampleSite/AreaChart/AreaChart.aspx.cs SampleWebSites/AjaxControlToolkitSampleSite/AsyncFileUpload/AsyncFileUpload.aspx SampleWebSites/AjaxControlToolkitSampleSite/AsyncFileUpload/AsyncFileUpload.aspx.cs SampleWebSites/AjaxControlToolkitSampleSite/AutoComplete/AutoComplete.asmx SampleWebSites/AjaxControlToolkitSampleSite/AutoComplete/AutoComplete.aspx SampleWebSites/AjaxControlToolkitSampleSite/BalloonPopup/BalloonPopupExtender.aspx SampleWebSites/AjaxControlToolkitSampleSite/BalloonPopup/BalloonPopupExtender.aspx.cs SampleWebSites/AjaxControlToolkitSampleSite/BalloonPopup/CustomStyle/BalloonPopupOvalStyle.css SampleWebSites/AjaxControlToolkitSampleSite/BarChart/BarChart.aspx SampleWebSites/AjaxControlToolkitSampleSite/BarChart/BarChart.aspx.cs SampleWebSites/AjaxControlToolkitSampleSite/BubbleChart/BubbleChart.aspx SampleWebSites/AjaxControlToolkitSampleSite/BubbleChart/BubbleChart.aspx.cs SampleWebSites/AjaxControlToolkitSampleSite/Calendar/Calendar.aspx SampleWebSites/AjaxControlToolkitSampleSite/CascadingDropDown/CarsService.asmx SampleWebSites/AjaxControlToolkitSampleSite/CascadingDropDown/CascadingDropDown.aspx SampleWebSites/AjaxControlToolkitSampleSite/CascadingDropDown/CascadingDropDown.aspx.cs SampleWebSites/AjaxControlToolkitSampleSite/CollapsiblePanel/CollapsiblePanel.aspx SampleWebSites/AjaxControlToolkitSampleSite/ColorPicker/ColorPicker.aspx SampleWebSites/AjaxControlToolkitSampleSite/ComboBox/ComboBox.aspx SampleWebSites/AjaxControlToolkitSampleSite/ConfirmButton/ConfirmButton.aspx SampleWebSites/AjaxControlToolkitSampleSite/ConfirmButton/ConfirmButton.aspx.cs SampleWebSites/AjaxControlToolkitSampleSite/Default.aspx SampleWebSites/AjaxControlToolkitSampleSite/DefaultMaster.master SampleWebSites/AjaxControlToolkitSampleSite/DefaultMaster.master.cs SampleWebSites/AjaxControlToolkitSampleSite/DragPanel/DragPanel.aspx SampleWebSites/AjaxControlToolkitSampleSite/DropDown/DropDown.aspx SampleWebSites/AjaxControlToolkitSampleSite/DropDown/DropDown.aspx.cs SampleWebSites/AjaxControlToolkitSampleSite/DropShadow/DropShadow.aspx SampleWebSites/AjaxControlToolkitSampleSite/DynamicPopulate/DynamicPopulate.aspx SampleWebSites/AjaxControlToolkitSampleSite/FilteredTextBox/FilteredTextBox.aspx SampleWebSites/AjaxControlToolkitSampleSite/Gravatar/Gravatar.aspx SampleWebSites/AjaxControlToolkitSampleSite/HTMLEditor/HTMLEditor.aspx SampleWebSites/AjaxControlToolkitSampleSite/HTMLEditor/HTMLEditor.aspx.cs SampleWebSites/AjaxControlToolkitSampleSite/HTMLEditor/OtherSamples/AnotherStyle.aspx SampleWebSites/AjaxControlToolkitSampleSite/HTMLEditor/OtherSamples/AnotherStyle.aspx.cs SampleWebSites/AjaxControlToolkitSampleSite/HTMLEditor/OtherSamples/EditorWithCustomButtons_1.aspx SampleWebSites/AjaxControlToolkitSampleSite/HTMLEditor/OtherSamples/EditorWithCustomButtons_1.aspx.cs SampleWebSites/AjaxControlToolkitSampleSite/HTMLEditor/OtherSamples/FullNoBottom.aspx SampleWebSites/AjaxControlToolkitSampleSite/HTMLEditor/OtherSamples/FullNoBottom.aspx.cs SampleWebSites/AjaxControlToolkitSampleSite/HTMLEditor/OtherSamples/FullScreen.aspx SampleWebSites/AjaxControlToolkitSampleSite/HTMLEditor/OtherSamples/FullScreen.aspx.cs SampleWebSites/AjaxControlToolkitSampleSite/HTMLEditor/OtherSamples/Lite.aspx SampleWebSites/AjaxControlToolkitSampleSite/HTMLEditor/OtherSamples/Lite.aspx.cs SampleWebSites/AjaxControlToolkitSampleSite/HTMLEditor/OtherSamples/LiteNoBottom.aspx SampleWebSites/AjaxControlToolkitSampleSite/HTMLEditor/OtherSamples/LiteNoBottom.aspx.cs SampleWebSites/AjaxControlToolkitSampleSite/HTMLEditor/OtherSamples/Tabs.aspx SampleWebSites/AjaxControlToolkitSampleSite/HTMLEditor/OtherSamples/Tabs.aspx.cs SampleWebSites/AjaxControlToolkitSampleSite/HoverMenu/Hovermenu.aspx SampleWebSites/AjaxControlToolkitSampleSite/HtmlEditorExtender/CustomEventsSample.aspx SampleWebSites/AjaxControlToolkitSampleSite/HtmlEditorExtender/CustomEventsSample.aspx.cs SampleWebSites/AjaxControlToolkitSampleSite/HtmlEditorExtender/HTMLEditorExtender.aspx.cs SampleWebSites/AjaxControlToolkitSampleSite/HtmlEditorExtender/HtmlEditorExtender.aspx SampleWebSites/AjaxControlToolkitSampleSite/LineChart/LineChart.aspx SampleWebSites/AjaxControlToolkitSampleSite/LineChart/LineChart.aspx.cs SampleWebSites/AjaxControlToolkitSampleSite/ListSearch/ListSearch.aspx SampleWebSites/AjaxControlToolkitSampleSite/MaskedEdit/MaskedEdit.aspx SampleWebSites/AjaxControlToolkitSampleSite/ModalPopup/ModalPopup.aspx SampleWebSites/AjaxControlToolkitSampleSite/MultiHandleSlider/MultiHandleSlider.aspx SampleWebSites/AjaxControlToolkitSampleSite/MultiHandleSlider/MultiHandleSlider.aspx.cs SampleWebSites/AjaxControlToolkitSampleSite/MutuallyExclusiveCheckBox/MutuallyExclusiveCheckBox.aspx SampleWebSites/AjaxControlToolkitSampleSite/NoBot/NoBot.aspx SampleWebSites/AjaxControlToolkitSampleSite/NoBot/NoBot.aspx.cs SampleWebSites/AjaxControlToolkitSampleSite/NumericUpDown/NumericUpDown.asmx SampleWebSites/AjaxControlToolkitSampleSite/NumericUpDown/NumericUpDown.aspx SampleWebSites/AjaxControlToolkitSampleSite/NumericUpDown/NumericUpDown.aspx.cs SampleWebSites/AjaxControlToolkitSampleSite/PagingBulletedList/PagingBulletedList.aspx SampleWebSites/AjaxControlToolkitSampleSite/PasswordStrength/PasswordStrength.aspx SampleWebSites/AjaxControlToolkitSampleSite/PieChart/PieChart.aspx SampleWebSites/AjaxControlToolkitSampleSite/PieChart/PieChart.aspx.cs SampleWebSites/AjaxControlToolkitSampleSite/PopupControl/PopupControl.aspx SampleWebSites/AjaxControlToolkitSampleSite/PopupControl/PopupControl.aspx.cs SampleWebSites/AjaxControlToolkitSampleSite/Rating/Rating.aspx SampleWebSites/AjaxControlToolkitSampleSite/Rating/Rating.aspx.cs SampleWebSites/AjaxControlToolkitSampleSite/ReorderList/ReorderList.aspx SampleWebSites/AjaxControlToolkitSampleSite/ResizableControl/ResizableControl.aspx SampleWebSites/AjaxControlToolkitSampleSite/ResizableControl/ResizableControl.aspx.cs SampleWebSites/AjaxControlToolkitSampleSite/RoundedCorners/RoundedCorners.aspx SampleWebSites/AjaxControlToolkitSampleSite/Samples.sitemap SampleWebSites/AjaxControlToolkitSampleSite/Seadragon/Seadragon.aspx SampleWebSites/AjaxControlToolkitSampleSite/SlideShow/SlideShow.aspx SampleWebSites/AjaxControlToolkitSampleSite/Slider/Slider.aspx SampleWebSites/AjaxControlToolkitSampleSite/Slider/Slider.aspx.cs SampleWebSites/AjaxControlToolkitSampleSite/StyleSheet.css SampleWebSites/AjaxControlToolkitSampleSite/Tabs/Tabs.aspx SampleWebSites/AjaxControlToolkitSampleSite/Tabs/Tabs.aspx.cs SampleWebSites/AjaxControlToolkitSampleSite/TextboxWatermark/TextboxWatermark.aspx SampleWebSites/AjaxControlToolkitSampleSite/TextboxWatermark/TextboxWatermark.aspx.cs SampleWebSites/AjaxControlToolkitSampleSite/ToggleButton/ToggleButton.aspx SampleWebSites/AjaxControlToolkitSampleSite/ToggleButton/ToggleButton.aspx.cs SampleWebSites/AjaxControlToolkitSampleSite/Twitter/Twitter.aspx SampleWebSites/AjaxControlToolkitSampleSite/Twitter/Twitter.aspx.cs SampleWebSites/AjaxControlToolkitSampleSite/UpdatePanelAnimation/UpdatePanelAnimation.aspx SampleWebSites/AjaxControlToolkitSampleSite/UpdatePanelAnimation/UpdatePanelAnimation.aspx.cs SampleWebSites/AjaxControlToolkitSampleSite/ValidatorCallout/ValidatorCallout.aspx SampleWebSites/AjaxControlToolkitSampleSite/ValidatorCallout/ValidatorCallout.aspx.cs SampleWebSites/AjaxControlToolkitSampleSite/Walkthrough/AnimationReference.aspx SampleWebSites/AjaxControlToolkitSampleSite/Walkthrough/AnimationReference/Action.ascx SampleWebSites/AjaxControlToolkitSampleSite/Walkthrough/AnimationReference/Animation.ascx SampleWebSites/AjaxControlToolkitSampleSite/Walkthrough/AnimationReference/CaseAnimation.ascx SampleWebSites/AjaxControlToolkitSampleSite/Walkthrough/AnimationReference/ColorAnimation.ascx SampleWebSites/AjaxControlToolkitSampleSite/Walkthrough/AnimationReference/ConditionAnimation.ascx SampleWebSites/AjaxControlToolkitSampleSite/Walkthrough/AnimationReference/DiscreteAnimation.ascx SampleWebSites/AjaxControlToolkitSampleSite/Walkthrough/AnimationReference/EnableAction.ascx SampleWebSites/AjaxControlToolkitSampleSite/Walkthrough/AnimationReference/FadeAnimation.ascx SampleWebSites/AjaxControlToolkitSampleSite/Walkthrough/AnimationReference/FadeInAnimation.ascx SampleWebSites/AjaxControlToolkitSampleSite/Walkthrough/AnimationReference/FadeOutAnimation.ascx SampleWebSites/AjaxControlToolkitSampleSite/Walkthrough/AnimationReference/HideAction.ascx SampleWebSites/AjaxControlToolkitSampleSite/Walkthrough/AnimationReference/InterpolatedAnimation.ascx SampleWebSites/AjaxControlToolkitSampleSite/Walkthrough/AnimationReference/LengthAnimation.ascx SampleWebSites/AjaxControlToolkitSampleSite/Walkthrough/AnimationReference/MoveAnimation.ascx SampleWebSites/AjaxControlToolkitSampleSite/Walkthrough/AnimationReference/OpacityAction.ascx SampleWebSites/AjaxControlToolkitSampleSite/Walkthrough/AnimationReference/ParallelAnimation.ascx SampleWebSites/AjaxControlToolkitSampleSite/Walkthrough/AnimationReference/ParentAnimation.ascx SampleWebSites/AjaxControlToolkitSampleSite/Walkthrough/AnimationReference/PropertyAnimation.ascx SampleWebSites/AjaxControlToolkitSampleSite/Walkthrough/AnimationReference/PulseAnimation.ascx SampleWebSites/AjaxControlToolkitSampleSite/Walkthrough/AnimationReference/ResizeAnimation.ascx SampleWebSites/AjaxControlToolkitSampleSite/Walkthrough/AnimationReference/ScaleAnimation.ascx SampleWebSites/AjaxControlToolkitSampleSite/Walkthrough/AnimationReference/ScriptAction.ascx SampleWebSites/AjaxControlToolkitSampleSite/Walkthrough/AnimationReference/SelectionAnimation.ascx SampleWebSites/AjaxControlToolkitSampleSite/Walkthrough/AnimationReference/SequenceAnimation.ascx SampleWebSites/AjaxControlToolkitSampleSite/Walkthrough/AnimationReference/StyleAction.ascx SampleWebSites/AjaxControlToolkitSampleSite/Walkthrough/AtlasToAspNetAjax.aspx SampleWebSites/AjaxControlToolkitSampleSite/Walkthrough/CCDWithDB.aspx SampleWebSites/AjaxControlToolkitSampleSite/Walkthrough/ExtenderClasses.aspx SampleWebSites/AjaxControlToolkitSampleSite/Walkthrough/OtherNeatStuff.aspx SampleWebSites/AjaxControlToolkitSampleSite/Walkthrough/UsingAnimations.aspx SampleWebSites/AjaxControlToolkitSampleSite/Walkthroughs.sitemap SampleWebSites/AjaxControlToolkitSampleSite/Web.NET35.config.exclude SampleWebSites/AjaxControlToolkitSampleSite/Web.NET45.config.exclude SampleWebSites/AjaxControlToolkitSampleSite/Web.config Server/AjaxControlToolkit/Accordion/Accordion.cs Server/AjaxControlToolkit/Accordion/AccordionCommandEventArgs.cs Server/AjaxControlToolkit/Accordion/AccordionContentPanel.cs Server/AjaxControlToolkit/Accordion/AccordionDesigner.cs Server/AjaxControlToolkit/Accordion/AccordionExtender.cs Server/AjaxControlToolkit/Accordion/AccordionExtenderDesigner.cs Server/AjaxControlToolkit/Accordion/AccordionItemEvent.cs Server/AjaxControlToolkit/Accordion/AccordionItemType.cs Server/AjaxControlToolkit/Accordion/AccordionPane.cs Server/AjaxControlToolkit/Accordion/AccordionPaneCollection.cs Server/AjaxControlToolkit/Accordion/AutoSize.cs Server/AjaxControlToolkit/AjaxFileUpload/AjaxFileUpload.CompleteAllEventArgs.pre.js Server/AjaxControlToolkit/AjaxFileUpload/AjaxFileUpload.Control.pre.js Server/AjaxControlToolkit/AjaxFileUpload/AjaxFileUpload.EventArgs.pre.js Server/AjaxControlToolkit/AjaxFileUpload/AjaxFileUpload.Item.pre.js Server/AjaxControlToolkit/AjaxFileUpload/AjaxFileUpload.Processor.pre.js Server/AjaxControlToolkit/AjaxFileUpload/AjaxFileUpload.ProcessorHtml5.pre.js Server/AjaxControlToolkit/AjaxFileUpload/AjaxFileUpload.StartEventArgs.pre.js Server/AjaxControlToolkit/AjaxFileUpload/AjaxFileUpload.Utils.pre.js Server/AjaxControlToolkit/AjaxFileUpload/AjaxFileUpload.cs Server/AjaxControlToolkit/AjaxFileUpload/AjaxFileUpload.css Server/AjaxControlToolkit/AjaxFileUpload/AjaxFileUploadBlobInfo.cs Server/AjaxControlToolkit/AjaxFileUpload/AjaxFileUploadCompleteAllEventArgs.cs Server/AjaxControlToolkit/AjaxFileUpload/AjaxFileUploadDesigner.cs Server/AjaxControlToolkit/AjaxFileUpload/AjaxFileUploadEventArgs.cs Server/AjaxControlToolkit/AjaxFileUpload/AjaxFileUploadHandler.cs Server/AjaxControlToolkit/AjaxFileUpload/AjaxFileUploadMode.cs Server/AjaxControlToolkit/AjaxFileUpload/AjaxFileUploadStartEventArgs.cs Server/AjaxControlToolkit/AjaxFileUpload/AjaxFileUploadStates.cs Server/AjaxControlToolkit/AjaxFileUpload/FileHeaderInfo.cs Server/AjaxControlToolkit/AjaxFileUpload/Helpers/AjaxFileUploadAzureHelper.cs Server/AjaxControlToolkit/AjaxFileUpload/Helpers/AjaxFileUploadHelper.cs Server/AjaxControlToolkit/AjaxFileUpload/Helpers/AjaxFileUploadHelper35.cs Server/AjaxControlToolkit/AjaxFileUpload/Helpers/MultipartFormDataParser.cs Server/AjaxControlToolkit/AlwaysVisibleControl/AlwaysVisibleControlDesigner.cs Server/AjaxControlToolkit/AlwaysVisibleControl/AlwaysVisibleControlExtender.cs Server/AjaxControlToolkit/AlwaysVisibleControl/HorizontalSide.cs Server/AjaxControlToolkit/AlwaysVisibleControl/VerticalSide.cs Server/AjaxControlToolkit/Animation/Animation.cs Server/AjaxControlToolkit/Animation/AnimationExtender.cs Server/AjaxControlToolkit/Animation/AnimationExtenderDesigner.cs Server/AjaxControlToolkit/Animation/AnimationJavaScriptConverter.cs Server/AjaxControlToolkit/Animation/AnimationScripts.cs Server/AjaxControlToolkit/AreaChart/AreaChart.cs Server/AjaxControlToolkit/AreaChart/AreaChart.css Server/AjaxControlToolkit/AreaChart/AreaChart.pre.js Server/AjaxControlToolkit/AreaChart/AreaChartDesigner.cs Server/AjaxControlToolkit/AreaChart/AreaChartSeries.cs Server/AjaxControlToolkit/AreaChart/AreaChartSeriesCollection.cs Server/AjaxControlToolkit/AreaChart/AreaChartSeriesCollectionEditor.cs Server/AjaxControlToolkit/AreaChart/AreaChartType.cs Server/AjaxControlToolkit/AsyncFileUpload/AsyncFileUpload.cs Server/AjaxControlToolkit/AsyncFileUpload/AsyncFileUpload.pre.js Server/AjaxControlToolkit/AsyncFileUpload/AsyncFileUploadDesigner.cs Server/AjaxControlToolkit/AsyncFileUpload/FileUploadEventArgs.cs Server/AjaxControlToolkit/AsyncFileUpload/PersistedStoreManager.cs Server/AjaxControlToolkit/AutoComplete/AutoCompleteDesigner.cs Server/AjaxControlToolkit/AutoComplete/AutoCompleteExtender.cs Server/AjaxControlToolkit/BalloonPopup/BalloonPopupDesigner.cs Server/AjaxControlToolkit/BalloonPopup/BalloonPopupExtender.cs Server/AjaxControlToolkit/BalloonPopup/BalloonPopupPosition.cs Server/AjaxControlToolkit/BalloonPopup/BalloonPopupSize.cs Server/AjaxControlToolkit/BalloonPopup/BalloonPopupStyle.cs Server/AjaxControlToolkit/BalloonPopup/BalloonPopup_resource.css Server/AjaxControlToolkit/BalloonPopup/Cloud/BalloonPopup_resource.css Server/AjaxControlToolkit/BalloonPopup/Rectangle/BalloonPopup_resource.css Server/AjaxControlToolkit/BarChart/BarChart.cs Server/AjaxControlToolkit/BarChart/BarChart.css Server/AjaxControlToolkit/BarChart/BarChart.pre.js Server/AjaxControlToolkit/BarChart/BarChartDesigner.cs Server/AjaxControlToolkit/BarChart/BarChartSeries.cs Server/AjaxControlToolkit/BarChart/BarChartSeriesCollection.cs Server/AjaxControlToolkit/BarChart/BarChartSeriesCollectionEditor.cs Server/AjaxControlToolkit/BarChart/ChartType.cs Server/AjaxControlToolkit/BubbleChart/BubbleChart.cs Server/AjaxControlToolkit/BubbleChart/BubbleChartDesigner.cs Server/AjaxControlToolkit/BubbleChart/BubbleChartValue.cs Server/AjaxControlToolkit/BubbleChart/BubbleChartValueCollection.cs Server/AjaxControlToolkit/BubbleChart/BubbleChartValueCollectionEditor.cs Server/AjaxControlToolkit/Calendar/CalendarDefaultView.cs Server/AjaxControlToolkit/Calendar/CalendarDesigner.cs Server/AjaxControlToolkit/Calendar/CalendarExtender.cs Server/AjaxControlToolkit/Calendar/CalendarPosition.cs Server/AjaxControlToolkit/Calendar/Calendar_resource.css Server/AjaxControlToolkit/CascadingDropDown/CascadingDropDownDesigner.cs Server/AjaxControlToolkit/CascadingDropDown/CascadingDropDownExtender.cs Server/AjaxControlToolkit/CascadingDropDown/CascadingDropDownNameValue.cs Server/AjaxControlToolkit/CollapsiblePanel/CollapsiblePanelDesigner.cs Server/AjaxControlToolkit/CollapsiblePanel/CollapsiblePanelExpandDirection.cs Server/AjaxControlToolkit/CollapsiblePanel/CollapsiblePanelExtender.cs Server/AjaxControlToolkit/ColorPicker/ColorPickerDesigner.cs Server/AjaxControlToolkit/ColorPicker/ColorPickerExtender.cs Server/AjaxControlToolkit/ComboBox/ComboBox.cs Server/AjaxControlToolkit/ComboBox/ComboBox.css Server/AjaxControlToolkit/ComboBox/ComboBox.pre.js Server/AjaxControlToolkit/ComboBox/ComboBoxAutoCompleteMode.cs Server/AjaxControlToolkit/ComboBox/ComboBoxButton.cs Server/AjaxControlToolkit/ComboBox/ComboBoxDesigner.cs Server/AjaxControlToolkit/ComboBox/ComboBoxDesignerActionList.cs Server/AjaxControlToolkit/ComboBox/ComboBoxInputMode.cs Server/AjaxControlToolkit/ComboBox/ComboBoxItemInsertEventArgs.cs Server/AjaxControlToolkit/ComboBox/ComboBoxItemInsertLocation.cs Server/AjaxControlToolkit/ComboBox/ComboBoxRenderMode.cs Server/AjaxControlToolkit/Common/BoxSide.cs Server/AjaxControlToolkit/Common/CommonToolkitScripts.cs Server/AjaxControlToolkit/Common/DataConverter.cs Server/AjaxControlToolkit/Common/DateTimeScripts.cs Server/AjaxControlToolkit/Common/ThreadingScripts.cs Server/AjaxControlToolkit/Common/Utility.cs Server/AjaxControlToolkit/Compat/DragDrop/DragDropScripts.cs Server/AjaxControlToolkit/Compat/Timer/TimerScript.cs Server/AjaxControlToolkit/ConfirmButton/confirmButtonDesigner.cs Server/AjaxControlToolkit/ConfirmButton/confirmButtonExtender.cs Server/AjaxControlToolkit/DragPanel/DragPanelDesigner.cs Server/AjaxControlToolkit/DragPanel/DragPanelExtender.cs Server/AjaxControlToolkit/DropDown/DropDownDesigner.cs Server/AjaxControlToolkit/DropDown/DropDownExtender.cs Server/AjaxControlToolkit/DropDown/DropDown_resource.css Server/AjaxControlToolkit/DropShadow/DropShadowDesigner.cs Server/AjaxControlToolkit/DropShadow/DropShadowExtender.cs Server/AjaxControlToolkit/DynamicPopulate/DynamicPopulateDesigner.cs Server/AjaxControlToolkit/DynamicPopulate/DynamicPopulateExtender.cs Server/AjaxControlToolkit/ExtenderBase/AnimationExtenderControlBase.cs Server/AjaxControlToolkit/ExtenderBase/ClientCssResourceAttribute.cs Server/AjaxControlToolkit/ExtenderBase/ClientPropertyNameAttribute.cs Server/AjaxControlToolkit/ExtenderBase/ClientScriptResourceAttribute.cs Server/AjaxControlToolkit/ExtenderBase/ComponentReferenceAttribute.cs Server/AjaxControlToolkit/ExtenderBase/Constants.cs Server/AjaxControlToolkit/ExtenderBase/Design/ExtendedTypeDescriptionProvider.cs Server/AjaxControlToolkit/ExtenderBase/Design/ExtenderBaseDesignerHelpers.cs Server/AjaxControlToolkit/ExtenderBase/Design/ExtenderControlBaseDesigner.PageMethodSignatures.cs Server/AjaxControlToolkit/ExtenderBase/Design/ExtenderControlBaseDesigner.cs Server/AjaxControlToolkit/ExtenderBase/Design/ExternalReferences.cs Server/AjaxControlToolkit/ExtenderBase/Design/ExternalReferences.t4 Server/AjaxControlToolkit/ExtenderBase/Design/PageMethodSignatureAttribute.cs Server/AjaxControlToolkit/ExtenderBase/Design/TypeControlIDConverter.cs Server/AjaxControlToolkit/ExtenderBase/DynamicPopulateExtenderControlBase.cs Server/AjaxControlToolkit/ExtenderBase/ElementReferenceAttribute.cs Server/AjaxControlToolkit/ExtenderBase/ExtenderControlBase.cs Server/AjaxControlToolkit/ExtenderBase/ExtenderControlEventAttribute.cs Server/AjaxControlToolkit/ExtenderBase/ExtenderControlMethodAttribute.cs Server/AjaxControlToolkit/ExtenderBase/ExtenderControlPropertyAttribute.cs Server/AjaxControlToolkit/ExtenderBase/IClientStateManager.cs Server/AjaxControlToolkit/ExtenderBase/IControlResolver.cs Server/AjaxControlToolkit/ExtenderBase/ProfilePropertyBinding.cs Server/AjaxControlToolkit/ExtenderBase/ProfilePropertyBindingCollection.cs Server/AjaxControlToolkit/ExtenderBase/RequiredPropertyAttribute.cs Server/AjaxControlToolkit/ExtenderBase/RequiredScriptAttribute.cs Server/AjaxControlToolkit/ExtenderBase/ResolveControlEventArgs.cs Server/AjaxControlToolkit/ExtenderBase/ResolveControlEventHandler.cs Server/AjaxControlToolkit/ExtenderBase/ScriptControlBase.cs Server/AjaxControlToolkit/ExtenderBase/ScriptObjectBuilder.cs Server/AjaxControlToolkit/ExtenderBase/ScriptUserControl.cs Server/AjaxControlToolkit/ExtenderBase/ServicePathConverter.cs Server/AjaxControlToolkit/FilteredTextBox/FilterModes.cs Server/AjaxControlToolkit/FilteredTextBox/FilterTypes.cs Server/AjaxControlToolkit/FilteredTextBox/FilteredTextBoxDesigner.cs Server/AjaxControlToolkit/FilteredTextBox/FilteredTextBoxExtender.cs Server/AjaxControlToolkit/Gravatar/Gravatar.cs Server/AjaxControlToolkit/Gravatar/GravatarDefaultImageBehavior.cs Server/AjaxControlToolkit/Gravatar/GravatarDesigner.cs Server/AjaxControlToolkit/Gravatar/GravatarRating.cs Server/AjaxControlToolkit/HTMLEditor/DesignPanel.cs Server/AjaxControlToolkit/HTMLEditor/DesignPanel.css Server/AjaxControlToolkit/HTMLEditor/DesignPanel.pre.js Server/AjaxControlToolkit/HTMLEditor/DesignPanelEventHandler.cs Server/AjaxControlToolkit/HTMLEditor/DesignPanelEventHandler.pre.js Server/AjaxControlToolkit/HTMLEditor/Document.css Server/AjaxControlToolkit/HTMLEditor/EditPanel.cs Server/AjaxControlToolkit/HTMLEditor/EditPanel.pre.js Server/AjaxControlToolkit/HTMLEditor/EditPanelInstance.cs Server/AjaxControlToolkit/HTMLEditor/Editor.cs Server/AjaxControlToolkit/HTMLEditor/Editor.css Server/AjaxControlToolkit/HTMLEditor/Editor.pre.js Server/AjaxControlToolkit/HTMLEditor/EditorDesigner.cs Server/AjaxControlToolkit/HTMLEditor/Enums.cs Server/AjaxControlToolkit/HTMLEditor/Enums.pre.js Server/AjaxControlToolkit/HTMLEditor/Events.cs Server/AjaxControlToolkit/HTMLEditor/Events.pre.js Server/AjaxControlToolkit/HTMLEditor/ExecCommandEmulation.cs Server/AjaxControlToolkit/HTMLEditor/ExecCommandEmulation.pre.js Server/AjaxControlToolkit/HTMLEditor/HTMLEditor.cs Server/AjaxControlToolkit/HTMLEditor/HTMLEditor.pre.js Server/AjaxControlToolkit/HTMLEditor/HtmlPanel.cs Server/AjaxControlToolkit/HTMLEditor/HtmlPanel.css Server/AjaxControlToolkit/HTMLEditor/HtmlPanel.pre.js Server/AjaxControlToolkit/HTMLEditor/ModePanel.cs Server/AjaxControlToolkit/HTMLEditor/ModePanel.pre.js Server/AjaxControlToolkit/HTMLEditor/Popups/AttachedPopup.cs Server/AjaxControlToolkit/HTMLEditor/Popups/AttachedPopup.pre.js Server/AjaxControlToolkit/HTMLEditor/Popups/AttachedTemplatePopup.cs Server/AjaxControlToolkit/HTMLEditor/Popups/AttachedTemplatePopup.css Server/AjaxControlToolkit/HTMLEditor/Popups/AttachedTemplatePopup.pre.js Server/AjaxControlToolkit/HTMLEditor/Popups/BaseColorsPopup.cs Server/AjaxControlToolkit/HTMLEditor/Popups/BaseColorsPopup.pre.js Server/AjaxControlToolkit/HTMLEditor/Popups/LinkProperties.cs Server/AjaxControlToolkit/HTMLEditor/Popups/LinkProperties.pre.js Server/AjaxControlToolkit/HTMLEditor/Popups/OkCancelAttachedTemplatePopup.cs Server/AjaxControlToolkit/HTMLEditor/Popups/OkCancelAttachedTemplatePopup.pre.js Server/AjaxControlToolkit/HTMLEditor/Popups/Popup.cs Server/AjaxControlToolkit/HTMLEditor/Popups/Popup.pre.js Server/AjaxControlToolkit/HTMLEditor/Popups/PopupBGIButton.cs Server/AjaxControlToolkit/HTMLEditor/Popups/PopupBGIButton.pre.js Server/AjaxControlToolkit/HTMLEditor/Popups/PopupBoxButton.cs Server/AjaxControlToolkit/HTMLEditor/Popups/PopupBoxButton.pre.js Server/AjaxControlToolkit/HTMLEditor/Popups/PopupCommonButton.cs Server/AjaxControlToolkit/HTMLEditor/Popups/PopupCommonButton.pre.js Server/AjaxControlToolkit/HTMLEditor/PreviewPanel.cs Server/AjaxControlToolkit/HTMLEditor/PreviewPanel.pre.js Server/AjaxControlToolkit/HTMLEditor/Toolbar.cs Server/AjaxControlToolkit/HTMLEditor/Toolbar.pre.js Server/AjaxControlToolkit/HTMLEditor/ToolbarInstance.cs Server/AjaxControlToolkit/HTMLEditor/Toolbar_buttons/BackColorClear.cs Server/AjaxControlToolkit/HTMLEditor/Toolbar_buttons/BackColorClear.pre.js Server/AjaxControlToolkit/HTMLEditor/Toolbar_buttons/BackColorSelector.cs Server/AjaxControlToolkit/HTMLEditor/Toolbar_buttons/BackColorSelector.pre.js Server/AjaxControlToolkit/HTMLEditor/Toolbar_buttons/Bold.cs Server/AjaxControlToolkit/HTMLEditor/Toolbar_buttons/Bold.pre.js Server/AjaxControlToolkit/HTMLEditor/Toolbar_buttons/BoxButton.cs Server/AjaxControlToolkit/HTMLEditor/Toolbar_buttons/BoxButton.pre.js Server/AjaxControlToolkit/HTMLEditor/Toolbar_buttons/BulletedList.cs Server/AjaxControlToolkit/HTMLEditor/Toolbar_buttons/BulletedList.pre.js Server/AjaxControlToolkit/HTMLEditor/Toolbar_buttons/ColorButton.cs Server/AjaxControlToolkit/HTMLEditor/Toolbar_buttons/ColorButton.pre.js Server/AjaxControlToolkit/HTMLEditor/Toolbar_buttons/ColorSelector.cs Server/AjaxControlToolkit/HTMLEditor/Toolbar_buttons/ColorSelector.pre.js Server/AjaxControlToolkit/HTMLEditor/Toolbar_buttons/CommonButton.cs Server/AjaxControlToolkit/HTMLEditor/Toolbar_buttons/CommonButton.pre.js Server/AjaxControlToolkit/HTMLEditor/Toolbar_buttons/Copy.cs Server/AjaxControlToolkit/HTMLEditor/Toolbar_buttons/Copy.pre.js Server/AjaxControlToolkit/HTMLEditor/Toolbar_buttons/Cut.cs Server/AjaxControlToolkit/HTMLEditor/Toolbar_buttons/Cut.pre.js Server/AjaxControlToolkit/HTMLEditor/Toolbar_buttons/DecreaseIndent.cs Server/AjaxControlToolkit/HTMLEditor/Toolbar_buttons/DecreaseIndent.pre.js Server/AjaxControlToolkit/HTMLEditor/Toolbar_buttons/DesignMode.cs Server/AjaxControlToolkit/HTMLEditor/Toolbar_buttons/DesignMode.pre.js Server/AjaxControlToolkit/HTMLEditor/Toolbar_buttons/DesignModeBoxButton.cs Server/AjaxControlToolkit/HTMLEditor/Toolbar_buttons/DesignModeBoxButton.pre.js Server/AjaxControlToolkit/HTMLEditor/Toolbar_buttons/DesignModeImageButton.cs Server/AjaxControlToolkit/HTMLEditor/Toolbar_buttons/DesignModeImageButton.pre.js Server/AjaxControlToolkit/HTMLEditor/Toolbar_buttons/DesignModePopupImageButton.cs Server/AjaxControlToolkit/HTMLEditor/Toolbar_buttons/DesignModePopupImageButton.pre.js Server/AjaxControlToolkit/HTMLEditor/Toolbar_buttons/DesignModeSelectButton.cs Server/AjaxControlToolkit/HTMLEditor/Toolbar_buttons/DesignModeSelectButton.pre.js Server/AjaxControlToolkit/HTMLEditor/Toolbar_buttons/EditorToggleButton.cs Server/AjaxControlToolkit/HTMLEditor/Toolbar_buttons/EditorToggleButton.pre.js Server/AjaxControlToolkit/HTMLEditor/Toolbar_buttons/FixedBackColor.cs Server/AjaxControlToolkit/HTMLEditor/Toolbar_buttons/FixedBackColor.pre.js Server/AjaxControlToolkit/HTMLEditor/Toolbar_buttons/FixedColorButton.cs Server/AjaxControlToolkit/HTMLEditor/Toolbar_buttons/FixedColorButton.pre.js Server/AjaxControlToolkit/HTMLEditor/Toolbar_buttons/FixedForeColor.cs Server/AjaxControlToolkit/HTMLEditor/Toolbar_buttons/FixedForeColor.pre.js Server/AjaxControlToolkit/HTMLEditor/Toolbar_buttons/FontName.cs Server/AjaxControlToolkit/HTMLEditor/Toolbar_buttons/FontName.pre.js Server/AjaxControlToolkit/HTMLEditor/Toolbar_buttons/FontSize.cs Server/AjaxControlToolkit/HTMLEditor/Toolbar_buttons/FontSize.pre.js Server/AjaxControlToolkit/HTMLEditor/Toolbar_buttons/ForeColor.cs Server/AjaxControlToolkit/HTMLEditor/Toolbar_buttons/ForeColor.pre.js Server/AjaxControlToolkit/HTMLEditor/Toolbar_buttons/ForeColorClear.cs Server/AjaxControlToolkit/HTMLEditor/Toolbar_buttons/ForeColorClear.pre.js Server/AjaxControlToolkit/HTMLEditor/Toolbar_buttons/ForeColorSelector.cs Server/AjaxControlToolkit/HTMLEditor/Toolbar_buttons/ForeColorSelector.pre.js Server/AjaxControlToolkit/HTMLEditor/Toolbar_buttons/HorizontalSeparator.cs Server/AjaxControlToolkit/HTMLEditor/Toolbar_buttons/HorizontalSeparator.pre.js Server/AjaxControlToolkit/HTMLEditor/Toolbar_buttons/HtmlMode.cs Server/AjaxControlToolkit/HTMLEditor/Toolbar_buttons/HtmlMode.pre.js Server/AjaxControlToolkit/HTMLEditor/Toolbar_buttons/ImageButton.cs Server/AjaxControlToolkit/HTMLEditor/Toolbar_buttons/ImageButton.pre.js Server/AjaxControlToolkit/HTMLEditor/Toolbar_buttons/IncreaseIndent.cs Server/AjaxControlToolkit/HTMLEditor/Toolbar_buttons/IncreaseIndent.pre.js Server/AjaxControlToolkit/HTMLEditor/Toolbar_buttons/InsertHR.cs Server/AjaxControlToolkit/HTMLEditor/Toolbar_buttons/InsertHR.pre.js Server/AjaxControlToolkit/HTMLEditor/Toolbar_buttons/InsertLink.cs Server/AjaxControlToolkit/HTMLEditor/Toolbar_buttons/InsertLink.pre.js Server/AjaxControlToolkit/HTMLEditor/Toolbar_buttons/Italic.cs Server/AjaxControlToolkit/HTMLEditor/Toolbar_buttons/Italic.pre.js Server/AjaxControlToolkit/HTMLEditor/Toolbar_buttons/JustifyCenter.cs Server/AjaxControlToolkit/HTMLEditor/Toolbar_buttons/JustifyCenter.pre.js Server/AjaxControlToolkit/HTMLEditor/Toolbar_buttons/JustifyFull.cs Server/AjaxControlToolkit/HTMLEditor/Toolbar_buttons/JustifyFull.pre.js Server/AjaxControlToolkit/HTMLEditor/Toolbar_buttons/JustifyLeft.cs Server/AjaxControlToolkit/HTMLEditor/Toolbar_buttons/JustifyLeft.pre.js Server/AjaxControlToolkit/HTMLEditor/Toolbar_buttons/JustifyRight.cs Server/AjaxControlToolkit/HTMLEditor/Toolbar_buttons/JustifyRight.pre.js Server/AjaxControlToolkit/HTMLEditor/Toolbar_buttons/Ltr.cs Server/AjaxControlToolkit/HTMLEditor/Toolbar_buttons/Ltr.pre.js Server/AjaxControlToolkit/HTMLEditor/Toolbar_buttons/MethodButton.cs Server/AjaxControlToolkit/HTMLEditor/Toolbar_buttons/MethodButton.pre.js Server/AjaxControlToolkit/HTMLEditor/Toolbar_buttons/ModeButton.cs Server/AjaxControlToolkit/HTMLEditor/Toolbar_buttons/ModeButton.pre.js Server/AjaxControlToolkit/HTMLEditor/Toolbar_buttons/OkCancelPopupButton.cs Server/AjaxControlToolkit/HTMLEditor/Toolbar_buttons/OkCancelPopupButton.pre.js Server/AjaxControlToolkit/HTMLEditor/Toolbar_buttons/OrderedList.cs Server/AjaxControlToolkit/HTMLEditor/Toolbar_buttons/OrderedList.pre.js Server/AjaxControlToolkit/HTMLEditor/Toolbar_buttons/Paragraph.cs Server/AjaxControlToolkit/HTMLEditor/Toolbar_buttons/Paragraph.pre.js Server/AjaxControlToolkit/HTMLEditor/Toolbar_buttons/Paste.cs Server/AjaxControlToolkit/HTMLEditor/Toolbar_buttons/Paste.pre.js Server/AjaxControlToolkit/HTMLEditor/Toolbar_buttons/PasteText.cs Server/AjaxControlToolkit/HTMLEditor/Toolbar_buttons/PasteText.pre.js Server/AjaxControlToolkit/HTMLEditor/Toolbar_buttons/PasteWord.cs Server/AjaxControlToolkit/HTMLEditor/Toolbar_buttons/PasteWord.pre.js Server/AjaxControlToolkit/HTMLEditor/Toolbar_buttons/PreviewMode.cs Server/AjaxControlToolkit/HTMLEditor/Toolbar_buttons/PreviewMode.pre.js Server/AjaxControlToolkit/HTMLEditor/Toolbar_buttons/Redo.cs Server/AjaxControlToolkit/HTMLEditor/Toolbar_buttons/Redo.pre.js Server/AjaxControlToolkit/HTMLEditor/Toolbar_buttons/RemoveAlignment.cs Server/AjaxControlToolkit/HTMLEditor/Toolbar_buttons/RemoveAlignment.pre.js Server/AjaxControlToolkit/HTMLEditor/Toolbar_buttons/RemoveLink.cs Server/AjaxControlToolkit/HTMLEditor/Toolbar_buttons/RemoveLink.pre.js Server/AjaxControlToolkit/HTMLEditor/Toolbar_buttons/RemoveStyles.cs Server/AjaxControlToolkit/HTMLEditor/Toolbar_buttons/RemoveStyles.pre.js Server/AjaxControlToolkit/HTMLEditor/Toolbar_buttons/Rtl.cs Server/AjaxControlToolkit/HTMLEditor/Toolbar_buttons/Rtl.pre.js Server/AjaxControlToolkit/HTMLEditor/Toolbar_buttons/SelectButton.cs Server/AjaxControlToolkit/HTMLEditor/Toolbar_buttons/SelectButton.pre.js Server/AjaxControlToolkit/HTMLEditor/Toolbar_buttons/Selector.cs Server/AjaxControlToolkit/HTMLEditor/Toolbar_buttons/Selector.pre.js Server/AjaxControlToolkit/HTMLEditor/Toolbar_buttons/StrikeThrough.cs Server/AjaxControlToolkit/HTMLEditor/Toolbar_buttons/StrikeThrough.pre.js Server/AjaxControlToolkit/HTMLEditor/Toolbar_buttons/SubScript.cs Server/AjaxControlToolkit/HTMLEditor/Toolbar_buttons/SubScript.pre.js Server/AjaxControlToolkit/HTMLEditor/Toolbar_buttons/SuperScript.cs Server/AjaxControlToolkit/HTMLEditor/Toolbar_buttons/SuperScript.pre.js Server/AjaxControlToolkit/HTMLEditor/Toolbar_buttons/Underline.cs Server/AjaxControlToolkit/HTMLEditor/Toolbar_buttons/Underline.pre.js Server/AjaxControlToolkit/HTMLEditor/Toolbar_buttons/Undo.cs Server/AjaxControlToolkit/HTMLEditor/Toolbar_buttons/Undo.pre.js Server/AjaxControlToolkit/HoverExtender/HoverExtender.cs Server/AjaxControlToolkit/HoverExtender/HoverExtenderDesigner.cs Server/AjaxControlToolkit/HoverMenu/HoverMenuDesigner.cs Server/AjaxControlToolkit/HoverMenu/HoverMenuExtender.cs Server/AjaxControlToolkit/HoverMenu/HoverMenuPopupPosition.cs Server/AjaxControlToolkit/HtmlEditorExtender/HtmlEditorExtender.cs Server/AjaxControlToolkit/HtmlEditorExtender/HtmlEditorExtenderButtonCollection.cs Server/AjaxControlToolkit/HtmlEditorExtender/HtmlEditorExtenderButtonCollectionEditor.cs Server/AjaxControlToolkit/HtmlEditorExtender/HtmlEditorExtenderButtons.cs Server/AjaxControlToolkit/HtmlEditorExtender/HtmlEditorExtenderControlBuilder.cs Server/AjaxControlToolkit/HtmlEditorExtender/HtmlEditorExtender_resource.css Server/AjaxControlToolkit/LineChart/LineChart.cs Server/AjaxControlToolkit/LineChart/LineChart.css Server/AjaxControlToolkit/LineChart/LineChart.pre.js Server/AjaxControlToolkit/LineChart/LineChartDesigner.cs Server/AjaxControlToolkit/LineChart/LineChartSeries.cs Server/AjaxControlToolkit/LineChart/LineChartSeriesCollection.cs Server/AjaxControlToolkit/LineChart/LineChartSeriesCollectionEditor.cs Server/AjaxControlToolkit/LineChart/LineChartType.cs Server/AjaxControlToolkit/ListSearch/ListSearchDesigner.cs Server/AjaxControlToolkit/ListSearch/ListSearchExtender.cs Server/AjaxControlToolkit/ListSearch/ListSearchPromptPosition.cs Server/AjaxControlToolkit/ListSearch/ListSearchQueryPattern.cs Server/AjaxControlToolkit/MaskedEdit/Compatibility/BaseValidator.cs Server/AjaxControlToolkit/MaskedEdit/Compatibility/IBaseCompareValidatorAccessor.cs Server/AjaxControlToolkit/MaskedEdit/Compatibility/IBaseValidatorAccessor.cs Server/AjaxControlToolkit/MaskedEdit/Compatibility/IWebControlAccessor.cs Server/AjaxControlToolkit/MaskedEdit/Compatibility/ValidatorHelper.cs Server/AjaxControlToolkit/MaskedEdit/MaskedEditCommon.cs Server/AjaxControlToolkit/MaskedEdit/MaskedEditDesigner.cs Server/AjaxControlToolkit/MaskedEdit/MaskedEditEnum.cs Server/AjaxControlToolkit/MaskedEdit/MaskedEditExtender.cs Server/AjaxControlToolkit/MaskedEdit/MaskedEditTypeConvert.cs Server/AjaxControlToolkit/MaskedEdit/MaskedEditValidator.cs Server/AjaxControlToolkit/ModalPopup/ModalPopupDesigner.cs Server/AjaxControlToolkit/ModalPopup/ModalPopupExtender.cs Server/AjaxControlToolkit/ModalPopup/ModalPopupRepositionMode.cs Server/AjaxControlToolkit/MultiHandleSlider/MultiHandleInnerRailStyle.cs Server/AjaxControlToolkit/MultiHandleSlider/MultiHandleSliderDesigner.cs Server/AjaxControlToolkit/MultiHandleSlider/MultiHandleSliderExtender.cs Server/AjaxControlToolkit/MultiHandleSlider/MultiHandleSliderTarget.cs Server/AjaxControlToolkit/MultiHandleSlider/MultiHandleSlider_resource.css Server/AjaxControlToolkit/MutuallyExclusiveCheckBox/MutuallyExclusiveCheckBoxDesigner.cs Server/AjaxControlToolkit/MutuallyExclusiveCheckBox/MutuallyExclusiveCheckBoxExtender.cs Server/AjaxControlToolkit/NoBot/NoBot.cs Server/AjaxControlToolkit/NoBot/NoBotBehavior.pre.js Server/AjaxControlToolkit/NoBot/NoBotDesigner.cs Server/AjaxControlToolkit/NoBot/NoBotEventArgs.cs Server/AjaxControlToolkit/NoBot/NoBotExtender.cs Server/AjaxControlToolkit/NoBot/NoBotState.cs Server/AjaxControlToolkit/NumericUpDown/NumericUpDownDesigner.cs Server/AjaxControlToolkit/NumericUpDown/NumericUpDownExtender.cs Server/AjaxControlToolkit/PagingBulletedList/PagingBulletedListDesigner.cs Server/AjaxControlToolkit/PagingBulletedList/PagingBulletedListExtender.cs Server/AjaxControlToolkit/PasswordStrength/PasswordStrengthExtenderDesigner.cs Server/AjaxControlToolkit/PasswordStrength/PasswordStrengthExtenderExtender.cs Server/AjaxControlToolkit/PasswordStrength/PropertyEnumerations.cs Server/AjaxControlToolkit/PieChart/PieChart.cs Server/AjaxControlToolkit/PieChart/PieChart.css Server/AjaxControlToolkit/PieChart/PieChart.pre.js Server/AjaxControlToolkit/PieChart/PieChartDesigner.cs Server/AjaxControlToolkit/PieChart/PieChartValue.cs Server/AjaxControlToolkit/PieChart/PieChartValueCollection.cs Server/AjaxControlToolkit/PieChart/PieChartValueCollectionEditor.cs Server/AjaxControlToolkit/PopupControl/PopupControlDesigner.cs Server/AjaxControlToolkit/PopupControl/PopupControlExtender.cs Server/AjaxControlToolkit/PopupExtender/PopupExtender.cs Server/AjaxControlToolkit/PopupExtender/PopupExtenderDesigner.cs Server/AjaxControlToolkit/PopupExtender/PositioningMode.cs Server/AjaxControlToolkit/Properties/AssemblyInfo.cs Server/AjaxControlToolkit/Properties/Resources.Designer.cs Server/AjaxControlToolkit/Properties/Resources.NET4.Designer.cs Server/AjaxControlToolkit/Properties/Resources.NET4.resx Server/AjaxControlToolkit/Properties/Resources.resx Server/AjaxControlToolkit/Rating/Rating.cs Server/AjaxControlToolkit/Rating/RatingDesigner.cs Server/AjaxControlToolkit/Rating/RatingExtender.cs Server/AjaxControlToolkit/ReorderList/BulletedList.cs Server/AjaxControlToolkit/ReorderList/BulletedListItem.cs Server/AjaxControlToolkit/ReorderList/DraggableListItemBehavior.pre.js Server/AjaxControlToolkit/ReorderList/DraggableListItemExtender.cs Server/AjaxControlToolkit/ReorderList/DropWatcherBehavior.pre.js Server/AjaxControlToolkit/ReorderList/DropWatcherExtender.cs Server/AjaxControlToolkit/ReorderList/ReorderHandleAlignment.cs Server/AjaxControlToolkit/ReorderList/ReorderList.cs Server/AjaxControlToolkit/ReorderList/ReorderListDesigner.cs Server/AjaxControlToolkit/ReorderList/ReorderListEvents.cs Server/AjaxControlToolkit/ReorderList/ReorderListInsertLocation.cs Server/AjaxControlToolkit/ReorderList/ReorderListItem.cs Server/AjaxControlToolkit/ReorderList/ReorderListItemCollection.cs Server/AjaxControlToolkit/ReorderList/ReorderListItemLayoutType.cs Server/AjaxControlToolkit/ReorderList/RepeatDirection.cs Server/AjaxControlToolkit/ResizableControl/ResizableControlDesigner.cs Server/AjaxControlToolkit/ResizableControl/ResizableControlExtender.cs Server/AjaxControlToolkit/RoundedCorners/BoxCorners.cs Server/AjaxControlToolkit/RoundedCorners/RoundedCornersDesigner.cs Server/AjaxControlToolkit/RoundedCorners/RoundedCornersExtender.cs Server/AjaxControlToolkit/Sanitizer/ProviderSanitizerSection.cs Server/AjaxControlToolkit/Sanitizer/Sanitizer.cs Server/AjaxControlToolkit/Sanitizer/SanitizerProvider.cs Server/AjaxControlToolkit/Sanitizer/SanitizerProviderCollection.cs Server/AjaxControlToolkit/Seadragon/OverlayCollectionEditor.cs Server/AjaxControlToolkit/Seadragon/Seadragon.cs Server/AjaxControlToolkit/Seadragon/SeadragonControl.cs Server/AjaxControlToolkit/Seadragon/SeadragonDesigner.cs Server/AjaxControlToolkit/Seadragon/SeadragonOverlay.cs Server/AjaxControlToolkit/Seadragon/UrlEditor.cs Server/AjaxControlToolkit/SlideShow/Slide.cs Server/AjaxControlToolkit/SlideShow/SlideShowAnimationType.cs Server/AjaxControlToolkit/SlideShow/SlideShowDesigner.cs Server/AjaxControlToolkit/SlideShow/SlideShowExtender.cs Server/AjaxControlToolkit/SlideShow/SlideShow_resource.css Server/AjaxControlToolkit/Slider/SliderBehavior_resource.pre.js Server/AjaxControlToolkit/Slider/SliderDesigner.cs Server/AjaxControlToolkit/Slider/SliderExtender.cs Server/AjaxControlToolkit/Slider/SliderOrientation.cs Server/AjaxControlToolkit/Slider/Slider_resource.css Server/AjaxControlToolkit/Tabs/OnDemandMode.cs Server/AjaxControlToolkit/Tabs/TabContainer.cs Server/AjaxControlToolkit/Tabs/TabContainerDesigner.cs Server/AjaxControlToolkit/Tabs/TabPanel.cs Server/AjaxControlToolkit/Tabs/TabPanelCollection.cs Server/AjaxControlToolkit/Tabs/TabPanelDesigner.cs Server/AjaxControlToolkit/Tabs/TabStripPlacement.cs Server/AjaxControlToolkit/Tabs/Tabs_resource.css Server/AjaxControlToolkit/TextboxWatermark/TextboxWatermarkExtender.cs Server/AjaxControlToolkit/TextboxWatermark/TextboxWatermarkExtenderDesigner.cs Server/AjaxControlToolkit/ToggleButton/ToggleButtonExtender.cs Server/AjaxControlToolkit/ToggleButton/ToggleButtonExtenderDesigner.cs Server/AjaxControlToolkit/ToolkitScriptManager/ScriptCombineAttribute.cs Server/AjaxControlToolkit/ToolkitScriptManager/ToolkitScriptManager.cs Server/AjaxControlToolkit/Twitter/Twitter.cs Server/AjaxControlToolkit/Twitter/TwitterAPI.cs Server/AjaxControlToolkit/Twitter/TwitterDesigner.cs Server/AjaxControlToolkit/Twitter/TwitterMode.cs Server/AjaxControlToolkit/Twitter/TwitterStatus.cs Server/AjaxControlToolkit/Twitter/TwitterUser.cs Server/AjaxControlToolkit/Twitter/Twitter_resource.css Server/AjaxControlToolkit/UpdatePanelAnimation/UpdatePanelAnimationDesigner.cs Server/AjaxControlToolkit/UpdatePanelAnimation/UpdatePanelAnimationExtender.cs Server/AjaxControlToolkit/ValidatorCallout/ValidatorCalloutDesigner.cs Server/AjaxControlToolkit/ValidatorCallout/ValidatorCalloutExtender.cs Server/AjaxControlToolkit/ValidatorCallout/ValidatorCalloutPosition.cs Server/Tests/UnitTests/AjaxFileUpload/MultipartFormDataParserParseHeaderInfoTests.cs Server/Tests/UnitTests/HtmlAgilityPackSanitizerProviderTest.cs Server/Tests/UnitTests/HtmlAgilityPackSanitizerTests/HtmlAgilityPackSanitizerProviderTest.cs Server/Tests/UnitTests/HtmlEditorExtenderTests/DecodeTests.cs Server/Tests/UnitTests/HtmlEditorExtenderTests/Inputs.csv Server/Tests/UnitTests/Properties/AssemblyInfo.cs Server/Tests/UnitTests/Test References/SanitizerProviders.accessor Server/Tests/UnitTests/ha.ckers.org/HaCkerOrgXMLTest.cs Server/Tests/UnitTests/ha.ckers.org/XssAttacks.xml Tools/JSBuild/CreateJSManifestResourceName.cs Tools/JSBuild/Directive.cs Tools/JSBuild/DirectiveFrame.cs Tools/JSBuild/JSBuildTask.cs Tools/JSBuild/PrependTask.cs Tools/JSBuild/Preprocessor.cs Tools/JSBuild/Properties/AssemblyInfo.cs Tools/JSBuild/QUnit.cs Tools/JSBuild/StackFrame.cs install.ps1 web.config.transform

Commented Unassigned: CalendarExtender doesn't work anymore [27478]

$
0
0
Hi, I just update the project to the last version of the toolkit and the CalendarExtender doesn't work anymore.

No error is reported, but when I click on the textbox the calendar is not showing.



```
<%@ Register TagPrefix="asp" Namespace="AjaxControlToolkit" Assembly="AjaxControlToolkit"%>
-----------
<asp:TextBox ID="txtSelectedDay" runat="server" Height="24px"></asp:TextBox>

<ajaxToolkit:CalendarExtender runat="server" ID="calendarExtender"
TargetControlID="txtSelectedDay"
CssClass=""
Format="MMMM d, yyyy" />

<asp:ScriptManager ID="ScriptManager1" runat="server">
```


it worked perfectly in the previous version.


Just one note: I see from http://www.asp.net/ajaxLibrary/AjaxControlToolkitSampleSite/Calendar/Calendar.aspx that the CalendarExtender is not present anymore :|

But I can't find this "Calendar" control in the assembly
Comments: I am seeing the same this. I also noticed in the AjaxControlSampleSite.zip file that the Calendar Control is still using ajaxToolkit:CalendarExtender, where as on the live demo site it is showing: ajaxToolkit:Calendar runat="server" TargetControlID="Date1" CssClass="ClassName" Format="MMMM d, yyyy" PopupButtonID="Image1" When I use "ajaxToolkit:Calendar", I get this error: Parser Error Description: An error occurred during the parsing of a resource required to service this request. Please review the following specific parse error details and modify your source file appropriately. Parser Error Message: Unknown server tag 'ajaxToolkit:Calendar'. Source Error: Line 1200: PopupControlID="LoadingPanel" BackgroundCssClass="modalBackground" /> Line 1201: </div> Line 1202: <ajaxToolkit:Calendar runat="server" Line 1203: TargetControlID="DateOfSale" Line 1204: Format="MM/dd/yyyy" So, CalendarExtender is clearly still the correct syntax, but it is also no longer functioning for me either.

Commented Unassigned: Accordion not working [27477]

$
0
0
Just updated to the latest version today, and my Accordions stopped working. They are displayed one the page using the asp ScriptManager, and the top pane is expanded, but I cannot expand any other pane. Reverted back to old version, works fine.

Also noticed that when I specify an Accordion or an AccordionPane control in the AjaxControlToolkit.config file I get:

__Offending URL: http://localhost:1364/CSI/ManageAccounts.aspx
Source: AjaxControlToolkit
Message: Could not find control 'Accordion'. Please make sure you entered the correct control name in AjaxControlToolkit.config file.
Inner Exception:
Stack trace: at AjaxControlToolkit.ToolkitScriptManagerConfig.GetControlTypesInBundles(HttpContextBase context, String[] bundles) in f:\TeamCity\buildAgent\work\80acd78aa4c25314\Server\AjaxControlToolkit\ToolkitScriptManager\ToolkitScriptManagerConfig.cs:line 146 at AjaxControlToolkit.ToolkitScriptManagerCombiner.GetScriptReferences(HttpContextBase context, String[] bundles) in f:\TeamCity\buildAgent\work\80acd78aa4c25314\Server\AjaxControlToolkit\ToolkitScriptManager\ToolkitScriptManagerCombiner.cs:line 207 at AjaxControlToolkit.ToolkitScriptManager.OnLoad(EventArgs e) in f:\TeamCity\buildAgent\work\80acd78aa4c25314\Server\AjaxControlToolkit\ToolkitScriptManager\ToolkitScriptManager.cs:line 236 at System.Web.UI.Control.LoadRecursive() at System.Web.UI.Control.LoadRecursive() at System.Web.UI.Control.LoadRecursive() at System.Web.UI.Control.LoadRecursive() at System.Web.UI.Control.LoadRecursive() at System.Web.UI.Page.ProcessRequestMain(Boolean includeStagesBeforeAsyncPoint, Boolean includeStagesAfterAsyncPoint)
__

And:
Offending URL: http://localhost:1364/CSI/ManageAccounts.aspx
Source: AjaxControlToolkit
Message: Could not find control 'AccordionPane'. Please make sure you entered the correct control name in AjaxControlToolkit.config file.
Inner Exception:
Stack trace: at AjaxControlToolkit.ToolkitScriptManagerConfig.GetControlTypesInBundles(HttpContextBase context, String[] bundles) in f:\TeamCity\buildAgent\work\80acd78aa4c25314\Server\AjaxControlToolkit\ToolkitScriptManager\ToolkitScriptManagerConfig.cs:line 146 at AjaxControlToolkit.ToolkitScriptManagerCombiner.GetScriptReferences(HttpContextBase context, String[] bundles) in f:\TeamCity\buildAgent\work\80acd78aa4c25314\Server\AjaxControlToolkit\ToolkitScriptManager\ToolkitScriptManagerCombiner.cs:line 207 at AjaxControlToolkit.ToolkitScriptManager.OnLoad(EventArgs e) in f:\TeamCity\buildAgent\work\80acd78aa4c25314\Server\AjaxControlToolkit\ToolkitScriptManager\ToolkitScriptManager.cs:line 236 at System.Web.UI.Control.LoadRecursive() at System.Web.UI.Control.LoadRecursive() at System.Web.UI.Control.LoadRecursive() at System.Web.UI.Control.LoadRecursive() at System.Web.UI.Control.LoadRecursive() at System.Web.UI.Page.ProcessRequestMain(Boolean includeStagesBeforeAsyncPoint, Boolean includeStagesAfterAsyncPoint)


Here's my ControlBundle:

<controlBundle name="ManageAccountsBundle">
<control name="ComboBox" />
<control name="CalendarExtender" />
<control name="TextBoxWatermarkExtender" />
<control name="MaskedEditExtender" />
<control name="Accordion" />
<control name="AccordionPane" />
</controlBundle>
Comments: This fixed my issue, as long as I changed the ScriptManager from the asp:ScriptManager to the ajaxToolkit:ToolkitScriptManager and specified the Accordion controls in my ControlBundle in the AjaxControlToolkit.config file, as shown above.

Created Unassigned: In Firefox weird behavior of Combobox [27480]

$
0
0
When I press F5 in Combobox control using Firefox instead of refresh page it types T/t. It works fine in IE 9 and Chrome. My Firefox version is 22.0 .

Edited Unassigned: In Firefox weird behavior of Combobox [27480]

$
0
0
When I press F5 in Combobox control using Firefox instead of refresh page it types T/t. It works fine in IE 9 and Chrome. My Firefox version is 22.0 .

And one more issue is there with Firefox. When I select something from combobox item list with cursor it does not fire Blur event of combobox control's textbox(I have added Blur attribute on textbox of combobox). This also works fine with IE and Chrome.

Commented Unassigned: CalendarExtender doesn't work anymore [27478]

$
0
0
Hi, I just update the project to the last version of the toolkit and the CalendarExtender doesn't work anymore.

No error is reported, but when I click on the textbox the calendar is not showing.



```
<%@ Register TagPrefix="asp" Namespace="AjaxControlToolkit" Assembly="AjaxControlToolkit"%>
-----------
<asp:TextBox ID="txtSelectedDay" runat="server" Height="24px"></asp:TextBox>

<ajaxToolkit:CalendarExtender runat="server" ID="calendarExtender"
TargetControlID="txtSelectedDay"
CssClass=""
Format="MMMM d, yyyy" />

<asp:ScriptManager ID="ScriptManager1" runat="server">
```


it worked perfectly in the previous version.


Just one note: I see from http://www.asp.net/ajaxLibrary/AjaxControlToolkitSampleSite/Calendar/Calendar.aspx that the CalendarExtender is not present anymore :|

But I can't find this "Calendar" control in the assembly
Comments: no, @motox426 different problem here ;) however, I solved it by changing the toolscript manager in this way: ``` <asp:ToolkitScriptManager ID="ScriptManager1" runat="server" EnablePartialRendering="true" CombineScripts="false" > ``` and in the web.config: ``` <runtime> <assemblyBinding xmlns="urn:schemas-microsoft-com:asm.v1"> <dependentAssembly> <assemblyIdentity name="AjaxControlToolkit" publicKeyToken="28f01b0e84b6d53e" culture="neutral" /> <bindingRedirect oldVersion="0.0.0.0-4.1.7.725" newVersion="4.1.7.725" /> </dependentAssembly> <dependentAssembly> <assemblyIdentity name="HtmlAgilityPack" publicKeyToken="bd319b19eaf3b43a" culture="neutral" /> <bindingRedirect oldVersion="0.0.0.0-1.4.6.0" newVersion="1.4.6.0" /> </dependentAssembly> </assemblyBinding> </runtime> ``` your problem seems something like a wrong prefix in ``` <%@ Register TagPrefix="asp" Namespace="AjaxControlToolkit" Assembly="AjaxControlToolkit"%> ```

Created Unassigned: Error in Masked edit validator [27481]

$
0
0
The javascript code for the data validation is broken if you do not specifiy the UserDateFormat in a "long" format if you do not want to use US date formats.

If you debug then the value.DateFormat passes "DMY" or the like but the switch statement expects "DayMonthYear". If you use a culture or use the drop down options in the properties in VS you will use the "short" format. If you specify "DayMonthYear" in the UserDateFormat on the MaskedEditExtender then it works as expected.

The offending function is:
function MaskedEditValidatorPartDate(value,mask,MinVl,MaxVl)

Looks like the source is "MaskedEditValidator.pre.js"

And BTW the example site masked edit validator for the date (MaskedEditExtender5) is also wrong in that the Mask value is "99/99/99" when it should be "99/99/9999".
Viewing all 4858 articles
Browse latest View live


Latest Images

<script src="https://jsc.adskeeper.com/r/s/rssing.com.1596347.js" async> </script>