Quantcast
Channel: AjaxControlToolkit Work Item Rss Feed
Viewing all 4356 articles
Browse latest View live

Commented Unassigned: Sys.WebForms.PageRequestManagerServerErrorException: Script entries not loaded yet [27517]

$
0
0
I'm working on a .NET 4 Web site running on IIS 5.1 and use Ajax Control Toolkit 4.1.7.725 (July 2013).

A Sys.WebForms.PageRequestManagerServerErrorException exception is thrown after a period of inactivity (or a forced iisreset) and clicking a server Button in a custom control. The Button is inside an UpdatePanel and the latter is inside a TabContainer.

POST response:
> 30|error|500|Script entries not loaded yet.|

` `
Exception message:
> Script entries not loaded yet.

` `
The exception is not thrown if I use Ajax Control Toolkit 4.1.7.607 (June 2013).
Comments: I have the same problem, only setting CombineScripts="False" helped getting rid of the problem for now. Any updates on this error?

Commented Issue: AjaxFileUpload control doesn't work if it's placed on an initially invisible Panel control [27307]

$
0
0
AjaxFileUpload control doesn't work if it's placed on an initially invisible Panel control. Files can be selected on the client side, but if the user clicks the Upload button then the upload will not be finished and it remains in a failed state.

The following example demonstrates how can the problem be reproduced:

<script type=”text/javascript”>
function onClientUploadComplete(sender, e) {
}
</script>

<asp:Button ID="bt1" runat="server" Text="Show upload panel" OnClick="bt1_Click" />
<asp:Panel ID="p1" runat="server" Visible="false">
<asp:AjaxFileUpload ID="ajaxFileUpload" runat="server"
OnClientUploadComplete="onClientUploadComplete"
OnUploadComplete="ajaxFileUpload_OnUploadComplete"
MaximumNumberOfFiles="1" />
</asp:Panel>

------------- Code behind --------------

protected void bt1_Click(object sender, EventArgs e)
{
p1.Visible = true;
}

protected void ajaxFileUpload_OnUploadComplete(object sender, AjaxFileUploadEventArgs file)
{
}

The following script error will be experienced if the user tries to upload any file onto the server:
Sys.ArgumentException: Sys.ArgumentException: Cannot deserialize. The data does not correspond to valid JSON. Parameter name: data

The problem can be worked around by placing another AjaxFileUpload control inside an invisible HTML div tag on the same page attaching the same client and server side upload complete event handlers to both AjaxFileUpload control.

<div style="display:none">
<asp:AjaxFileUpload ID="ghostAjaxFileUpload" runat="server"
OnClientUploadComplete="onClientUploadComplete"
OnUploadComplete="ajaxFileUpload_OnUploadComplete"
/>
</div>

AjaxControlToolkit:
Runtime Version: v4.0.30319
Version: 4.1.60919.0

Target framework: .NET Framework 4.0

Comments: This issue also face me, but I can't solve it till now!!! I have ajaxToolkit:AjaxFileUpload withen a multiview page (on a view initially invisible) When I navigate into the view , and then, try to load a file, I got the same error "Sys.ArgumentException: Sys.ArgumentException: Cannot deserialize. The data does not correspond to valid JSON. Parameter name: data" I have the latest ver. of ajaxToolkit:AjaxFileUpload 7…., and also I tried this work around <div style="display:none"> <ajaxToolkit:AjaxFileUpload ID="ghostAjaxFileUpload" runat="server" OnClientUploadComplete="onClientUploadComplete" OnUploadComplete="ajaxFileUpload_OnUploadComplete" /> </div> With this work around, the first error disappeared, but I got another error " Error: error raising upload complete event and start new upload " Note: when I displayed the ajaxToolkit:AjaxFileUpload view, at the page's start, the error disappeared and the files have been loaded without errors. Any help? Thanks

Commented Unassigned: AjaxFileUpload April 2013 Issues All IE Versions [27417]

$
0
0
After updating to latest April 2013 Control Toolkit, getting the following ASP.NET exception. Running Windows 2003 R2 and IIS. Google Chrom and Safari work fine.

I have spent the last 5 hours trying to get the AjaxFileUpload control to work with IE 10, 9, 8 and 7. I installed the package using NuGet and I installed it manually. Every time I test the control with Internet Explorer the Drag Drop area is not displayed. Only a single file upload is provided. If I select a file and upload it, I get an IIS exception (see below).

I'm using VS 2010 Premium and using 4.0 Net Framework. Has ANYONE tested this new version with Internet Explorer (any version)? I have attached 2 images (My VS 2010 environment) code sample and the IE browser display of the page. This is not showing the drag drop area. I did not even go that far to put in the upload code.

Thanks for the work you guys have done with this software. Hoping for an easy resolution.

I have attached 3 image files showing my problems (VS 2010 Environment, IE 10 Browser Display, and IE 10 Javascript exception found via debugger)


Event Type: Warning
Event Source: ASP.NET 4.0.30319.0
Event Category: Web Event
Event ID: 1309
Date: 5/7/2013
Time: 3:03:55 PM
User: N/A
Computer: IBT-2800
Description:
Event code: 3005
Event message: An unhandled exception has occurred.
Event time: 5/7/2013 3:03:55 PM
Event time (UTC): 5/7/2013 7:03:55 PM
Event ID: d59bd963e0f447e0a375367cb5b29cb9
Event sequence: 58
Event occurrence: 1
Event detail code: 0

Application information:
Application domain: /LM/W3SVC/1686273646/Root/MIS-8-130124268628101250
Trust level: Full
Application Virtual Path: /MIS
Application Path: C:\Buzz\iis_root\OLI\GardenAndGunClub\MIS2013\
Machine name: IBT-2800

Process information:
Process ID: 4872
Process name: w3wp.exe
Account name: NT AUTHORITY\NETWORK SERVICE

Exception information:
Exception type: Exception
Exception message: Invalid upload request.
at AjaxControlToolkit.AjaxFileUploadHandler.ProcessRequest(HttpContext context)
at System.Web.HttpApplication.CallHandlerExecutionStep.System.Web.HttpApplication.IExecutionStep.Execute()
at System.Web.HttpApplication.ExecuteStep(IExecutionStep step, Boolean& completedSynchronously)



Request information:
Request URL: https://www.gardenandgunclub.com:443/mis/AjaxFileUploadHandler.axd?contextKey={DA8BEDC8-B952-4d5d-8CC2-59FE922E2923}&fileId=5ADA8FD3-EAFC-2D21-99FD-B2CBF6866D57&fileName=IMG_0770.JPG&usePoll=true&AspxAutoDetectCookieSupport=1
Request path: /mis/AjaxFileUploadHandler.axd
User host address: 207.99.40.148
User:
Is authenticated: False
Authentication Type:
Thread account name: NT AUTHORITY\NETWORK SERVICE

Thread information:
Thread ID: 15
Thread account name: NT AUTHORITY\NETWORK SERVICE
Is impersonating: False
Stack trace: at AjaxControlToolkit.AjaxFileUploadHandler.ProcessRequest(HttpContext context)
at System.Web.HttpApplication.CallHandlerExecutionStep.System.Web.HttpApplication.IExecutionStep.Execute()
at System.Web.HttpApplication.ExecuteStep(IExecutionStep step, Boolean& completedSynchronously)


Custom event details:

For more information, see Help and Support Center at http://go.microsoft.com/fwlink/events.asp.
Comments: I have the same problem with all versions of IE accept IE 11. IE 11 seems to work perfectly. I am using forms authentication as well. If I simply delete the web.config file in the folders that the upload control is used in (specifies Deny all unauthenticated users) in effect allowing everyone access, it seems to work, but this is an unacceptable solution. I just wanted to confirm that the issues in IE seem to be related to forms authentication.

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 struggling with same problem (that is: CalendarExtender which doesn't work anymore). This happens since I installed last Toolkit release (the same that is currently available on Codeplex). After many hours spended on this issue, my conclusion is that: - CalendarExtender still has this name (if you download AjaxControlToolkitSampleSite you can see CalendarExtender present and working) - but IT ONLY WORKS IF YOU PUT IT OUTSIDE AN asp:UpdatePanel. I think this is a major issue that has to be solved ASAP.

Commented Unassigned: Combined scripts are not cached [27531]

$
0
0
Hello,
I just tried to set up combined scripts with the last version of ACT and it seems that scripts are never cached.

page.aspx
```
<act:ToolkitScriptManager runat="server" ID="ScriptManager1">
</act:ToolkitScriptManager>
```

AjaxControlToolkit.config
```
<ajaxControlToolkit>
<controlBundles>
<controlBundle>
<control name="ModalPopupExtender" />
</controlBundle>
</controlBundles>
</ajaxControlToolkit>
```
web.config - handlers added

See attached screen. Everytime page is reloaded, all scripts are loaded from cache, except ACT.
Any solution for this?
Comments: I had the same problem. It could be an Internet explorer issue because the cache does work for Chrome. It does not work with Internet explorer 11. I confirmed it also in the IIS LOGs.

Commented Unassigned: ajaxFileUpload hangs ie8 upon upload for every other (every odd) upload [27568]

$
0
0
AjaxControlToolkit FileVersion: 4.1.7.1005

I am not seeing why the ajaxFileUpload is hanging ie8 every odd numbered upload. Does anyone know what's going on?



I am using the Septembe 2013 release.

My web.config handlers:

<validation validateIntegratedModeConfiguration="false" />
<handlers>
<add name="ReportViewerWebControlHandler" preCondition="integratedMode" verb="*" path="Reserved.ReportViewerWebControl.axd" type="Microsoft.Reporting.WebForms.HttpHandler, Microsoft.ReportViewer.WebForms, Version=10.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a"/>
<add name="AjaxFileUploadHandler" verb="*"
path="AjaxFileUploadHandler.axd"
type="AjaxControlToolkit.AjaxFileUploadHandler,
AjaxControlToolkit"/>
</handlers>

and

<httpHandlers>
<add verb="*" path="AjaxFileUploadHandler.axd" type="AjaxControlToolkit.AjaxFileUploadHandler, AjaxControlToolkit"/>
<add path="Reserved.ReportViewerWebControl.axd" verb="*" type="Microsoft.Reporting.WebForms.HttpHandler, Microsoft.ReportViewer.WebForms, Version=10.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" validate="false"/>
</httpHandlers>



My page:

<%@ Page Language="C#" AutoEventWireup="true" CodeFile="ajaxFileUploadPOC.aspx.cs" Inherits="ajaxFileUploadPOC" %>

<!DOCTYPE html>

<html xmlns="http://www.w3.org/1999/xhtml">
<head runat="server">
<title></title>
</head>
<body>
<form id="form1" runat="server">
<div>
<AjaxControlToolkit:ToolkitScriptManager ID="Manager1" runat="server" />
<AjaxControlToolkit:AjaxFileUpload ID="AjaxUpload" runat="server" OnUploadComplete="AjaxUpload_UploadComplete" />
</div>
</form>
</body>
</html>
using System;
using System.Collections;
using System.Collections.Generic;
using System.IO;
using System.Linq;
using System.Web;
using System.Web.UI;
using System.Web.UI.WebControls;
using AjaxControlToolkit;

public partial class ajaxFileUploadPOC : System.Web.UI.Page
{
protected void Page_Load(object sender, EventArgs e)
{
if (!IsPostBack)
{
}
}
protected void AjaxUpload_UploadComplete(object sender, AjaxControlToolkit.AjaxFileUploadEventArgs e)
{
string fileName = Path.GetFileName(e.FileName);
AjaxUpload.SaveAs(@"f:\Temp\" + fileName);
}
}

Steps to reproduce:

1) run in debug mode from Vstudio 2012

2) click the "Select" button and upload a jpg

3) click the button "Upload" button once the jpg is uploaded

4) the postback will happen, and the progress bar at the bottom of ie8 will crawl and not complete.



additional steps:

5) click "Select" again, and upload another jpg

6) click the Upload button and the jpg will be uploaded

7) the postback will happen and the progress bar at the bottom of ie8 will complete

8) repeat steps 5-6, where every odd iteration will have the ie8 progress bar crawl and not complete.



Thanks,

-Pete
Comments: SAmitTyagi, I will give your suggestion a try when I get a chance. I've been busy with other projects in the meantime. -Pete

Closed Unassigned: Sys.WebForms.PageRequestManagerServerErrorException: Script entries not loaded yet [27517]

$
0
0
I'm working on a .NET 4 Web site running on IIS 5.1 and use Ajax Control Toolkit 4.1.7.725 (July 2013).

A Sys.WebForms.PageRequestManagerServerErrorException exception is thrown after a period of inactivity (or a forced iisreset) and clicking a server Button in a custom control. The Button is inside an UpdatePanel and the latter is inside a TabContainer.

POST response:
> 30|error|500|Script entries not loaded yet.|

` `
Exception message:
> Script entries not loaded yet.

` `
The exception is not thrown if I use Ajax Control Toolkit 4.1.7.607 (June 2013).

Closed Issue: TAB CONTROL ERROR [7564]

$
0
0
Anytime I try to use Ajax Control Toolkit controls inside of the Control Toolkit tabs control, I get this error after the postback:

Sys.Argument.NullException: Value cannot be null.
Parameter Name: element

I've downloaded the SampleWebsite and all samples are working fine.
But, code from the tabs sample dies if I put a Calendar control in it.

Attached is the error tripped by the masked edit control after posting back to a tab.
Thanks!!

:-)

Closed Issue: Error in Tabs Ajax Control Toolkit. [27237]

$
0
0
Hi,

I found an error in Tabs of ajax control toolkit, I have downloaded the last version of June 2012 Release, the erros occors in the other versions too.

The error consist in have a TabContainer inside a Tab of other TabContainer, inside an update panel.
When run the application an error of "Can't move focus to the control because it is invisible, not enabled, or of a type that does not accept the focus."

The error occors only in the IE 8, I dont have IE 7 for test. The error dont occors in IE 9 compatibility mode.

I have resolved this error, add a try/catch block in js script "Tabs.pre.js" where the focus of tab is set.

Attachment the application that occors the bug.

Ivan Patrick.

Closed Issue: Problem with tabcontainer in IE8 [27201]

$
0
0

Hello,
My team and me have developped a control using some ajax controls... The main control used is the tabcontainer containing 2-3 tabPanels.
Our control is working perfectly in ie9, firefox, chrome, opera but is not working with ie8. I've tried multiple version of AjaxControlToolkit .NET 3.5 library (Nov. 2011, May 2012, June 2012) expecting each time that this bug has been fixed but the error is still there.

The error is the following one:

Can't move focus to the control because it is invisible, not enabled, or of a type that does not accept the focus

Closed Issue: AjaxContainer : sys.invalidoperationexception owner must be set before initialize [26552]

$
0
0
I have all the tabpanels well placed within the tabcontainer and yet get the error. Works fine in the dev environment and most live users do not have a problem.But throws this error to users on a slow machine/network. Problem here is tabpanels cannot find the tabcontainer.

This issue has been reported several times by various people, but the issue status has been marked as "Closed" without actually providing a resolution. This is really frustrating. Could you please provide a quick patch as soon as possible? Thanks.

Created Unassigned: AsyncFileUploadID=AsyncFileUpload1&rnd= [27593]

$
0
0

STEPS TO REPRODUCE ERROR

STEP 1

Configure AsyncFileUpload with normal client (JavaScript) and server methods.

__On client functions__:

uploadError(sender, args) {..} and function uploadComplete(sender, args) {..}

_On server codebehind_:

AsyncFileUpload1_UploadedComplete(..) and AsyncFileUpload1_UploadedFileError(..)

On ASPX add a button than only do a Postback.

Now upload a large file (over 4 mbytes the default limit). After detected uploadError on Client JavaScript Function, the control display on red background color the name of the file.

STEP 2

Click on the Button to generate a Postback.

RESULT:

Automatically launch a new browser tab showing a URL querystring like this:

http://localhost/ImagesInGridViewDb/tImageUpload1.aspx___?AsyncFileUploadID=AsyncFileUpload1&rnd=0008577673175017342___

What is the mean of:

?AsyncFileUploadID=AsyncFileUpload1&rnd=0008577673175017342

See the image:

![Image](https://drive.google.com/file/d/0B7bumYZC90F0aXdHZVdhUktjMlU/edit?usp=sharing)




Edited Unassigned: AsyncFileUploadID=AsyncFileUpload1&rnd= [27593]

$
0
0

STEPS TO REPRODUCE ERROR

STEP 1

Configure AsyncFileUpload with normal client (JavaScript) and server methods.

__On client functions__:

uploadError(sender, args) {..} and function uploadComplete(sender, args) {..}

_On server codebehind_:

AsyncFileUpload1_UploadedComplete(..) and AsyncFileUpload1_UploadedFileError(..)

On ASPX add a button than only do a Postback.

Now upload a large file (over 4 mbytes the default limit). After detected uploadError on Client JavaScript Function, the control display on red background color the name of the file.

STEP 2

Click on the Button to generate a Postback.

RESULT:

Automatically launch a new browser tab showing a URL querystring like this:

http://localhost/ImagesInGridViewDb/tImageUpload1.aspx___?AsyncFileUploadID=AsyncFileUpload1&rnd=0008577673175017342___

What is the mean of:

?AsyncFileUploadID=AsyncFileUpload1&rnd=0008577673175017342

See the image:

![Image](https://docs.google.com/file/d/0B7bumYZC90F0aXdHZVdhUktjMlU/)




Edited Unassigned: AsyncFileUploadID=AsyncFileUpload1&rnd= [27593]

$
0
0

STEPS TO REPRODUCE ERROR

STEP 1

Configure AsyncFileUpload with normal client (JavaScript) and server methods.

__On client functions__:

uploadError(sender, args) {..} and function uploadComplete(sender, args) {..}

_On server codebehind_:

AsyncFileUpload1_UploadedComplete(..) and AsyncFileUpload1_UploadedFileError(..)

On ASPX add a button than only do a Postback.

Now upload a large file (over 4 mbytes the default limit). After detected uploadError on Client JavaScript Function, the control display on red background color the name of the file.

STEP 2

Click on the Button to generate a Postback.

RESULT:

Automatically launch a new browser tab showing a URL querystring like this:

http://localhost/ImagesInGridViewDb/tImageUpload1.aspx___?AsyncFileUploadID=AsyncFileUpload1&rnd=0008577673175017342___

What is the mean of:

?AsyncFileUploadID=AsyncFileUpload1&rnd=0008577673175017342

See the image:

![Image](https://skydrive.live.com/redir?resid=F3D7A503C5A2E642!133&authkey=!AFD5WoeoR16nmUg&v=3&ithint=photo%2c.JPG)




Edited Unassigned: AsyncFileUploadID=AsyncFileUpload1&rnd= [27593]

$
0
0

STEPS TO REPRODUCE ERROR

STEP 1

Configure AsyncFileUpload with normal client (JavaScript) and server methods.

__On client functions__:

uploadError(sender, args) {..} and function uploadComplete(sender, args) {..}

_On server codebehind_:

AsyncFileUpload1_UploadedComplete(..) and AsyncFileUpload1_UploadedFileError(..)

On ASPX add a button than only do a Postback.

Now upload a large file (over 4 mbytes the default limit). After detected uploadError on Client JavaScript Function, the control display on red background color the name of the file.

STEP 2

Click on the Button to generate a Postback.

RESULT:

Automatically launch a new browser tab showing a URL querystring like this:

http://localhost/ImagesInGridViewDb/tImageUpload1.aspx___?AsyncFileUploadID=AsyncFileUpload1&rnd=0008577673175017342___

What is the mean of:

?AsyncFileUploadID=AsyncFileUpload1&rnd=0008577673175017342

[See the image](https://skydrive.live.com/redir?resid=F3D7A503C5A2E642!133&authkey=!AFD5WoeoR16nmUg&v=3&ithint=photo%2c.JPG)







Created Unassigned: Ajax Toolkit Version 4.5.7.1005 Site Will Not Finish Loading [27594]

$
0
0
I used NuGet to add AjaxControlToolkit.dll version 4.5.7.1005 to the project.

The project works fine using IIS development server on two machines, my local dev machine and even works when launched via Visual Studio on the same server as IIS.

I stripped out all of the Asp controls and my controls and IIS still just continually loads.

![Image](http://example.com/logo.jpg)

Edited Unassigned: Ajax Toolkit Version 4.5.7.1005 Site Will Not Finish Loading [27594]

$
0
0
I used NuGet to add AjaxControlToolkit.dll version 4.5.7.1005 to the project.

The project works fine using IIS development server on two machines, my local dev machine and even works when launched via Visual Studio on the same server as IIS.

I stripped out all of the Asp controls and my controls and IIS still just continually loads.

Finally I took the AjaxControlToolkit version 4.1.51116.0 from another project and changed out the reference for the project and it fixed the issue.

Any idea why the new version doesn't work? I am using IIS 7 on Windows Server 2008 R2.

Has anyone else reported this issue? I can duplicate this issue by replacing out the Ajax Toolkit Version to the 4.5.7.1005 version.

Thanks

Edited Unassigned: Ajax Toolkit Version 4.5.7.1005 Site Will Not Finish Loading [27594]

$
0
0
I used NuGet to add AjaxControlToolkit.dll version 4.5.7.1005 to the project.

The project works fine using IIS development server on two machines, my local dev machine and even works when launched via Visual Studio on the same server as IIS.

I stripped out all of the Asp controls and my controls and IIS still just continually loads.

Finally I took the AjaxControlToolkit version 4.1.51116.0 from another project and changed out the reference for the project and it fixed the issue.

Any idea why the new version doesn't work? I am using IIS 7 on Windows Server 2008 R2.

I added a Response.Write to the page load event to see if it was being executed (and how many times) and it never appeared to enter the loop.

Has anyone else reported this issue? I can duplicate this issue by replacing out the Ajax Toolkit Version to the 4.5.7.1005 version.

The older version works fine for what I need (Ajax Toolkit Script Manager - Timer - Color Picker) all work fine in the older version so I have no issue using the older version but I just wanted to report the bug so if anyone else uses NuGet to update a project and experiences this bug they will know the cause and also so this this issue can be fixed as using the latest version is preferred.

Thanks

Edited Unassigned: Ajax Toolkit Version 4.5.7.1005 Site Will Not Finish Loading [27594]

$
0
0
I used NuGet to add AjaxControlToolkit.dll version 4.5.7.1005 to a project.

The project works fine using IIS development server on two machines, my local dev machine and even works when launched via Visual Studio on the same server as IIS.

I stripped out all of the Asp controls and my controls and IIS still just continually loads.

Finally I took the AjaxControlToolkit version 4.1.51116.0 from another project and changed out the reference for the project and it fixed the issue.

Any idea why the new version doesn't work? I am using IIS 7 on Windows Server 2008 R2.

I added a Response.Write to the page load event to see if it was being executed (and how many times) and it never appeared to enter the loop.

Has anyone else reported this issue? I can duplicate this issue by replacing out the Ajax Toolkit Version to the 4.5.7.1005 version.

The older version works fine for what I need (Ajax Toolkit Script Manager - Timer - Color Picker) all work fine in the older version so I have no issue using the older version but I just wanted to report the bug so if anyone else uses NuGet to update a project and experiences this bug they will know the cause and also so this this issue can be fixed as using the latest version is preferred.

Thanks

Edited Unassigned: Ajax Toolkit Version 4.5.7.1005 Site Will Not Finish Loading [27594]

$
0
0
I used NuGet to add AjaxControlToolkit.dll version 4.5.7.1005 to a project.

The project works fine using IIS development server on two machines, my local dev machine and even works when launched via Visual Studio on the same server as IIS.

I stripped out all of the Asp controls and my controls and IIS still just continually loads.

Finally I took the AjaxControlToolkit version 4.1.51116.0 from another project and changed out the reference for the project and it fixed the issue.

Any idea why the new version doesn't work? I am using IIS 7 on Windows Server 2008 R2.

I added a Response.Write to the page load event to see if it was being executed (and how many times) and it never appeared to execute the Page_Load event, or it never rendered.

Has anyone else reported this issue? I can duplicate this issue by replacing out the Ajax Toolkit Version to the 4.5.7.1005 version.

The older version works fine for what I need (Ajax Toolkit Script Manager - Timer - Color Picker) all work fine in the older version so I have no issue using the older version but I just wanted to report the bug so if anyone else uses NuGet to update a project and experiences this bug they will know the cause and also so this this issue can be fixed as using the latest version is preferred.

Thanks
Viewing all 4356 articles
Browse latest View live


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