I have a weird situation with PageRequestManager on IE6 production environment, which works good on IE6 stage environment.
The error states "Sys.webForms.PageRequestManager is null or not an object" and it throws in the following script:
Sys.WebForms.PageRequestManager._initialize('ctl00$ctl00$ScriptManager1', document.getElementById('aspnetForm'));
Sys.WebForms.PageRequestManager.getInstance()._updateControls
IE7, IE8 and Firefox all work on prod and stage. IE6 works on stage, but fails on prod.
I tried to download the 4 scripts ASP Net injects onto the page:
- https://www.domain.com/sitename/WebResource.axd?d=stuff&t=634540197251992131 (to load WebForm_PostBackOptions)
- https://www.domain.com/sitename/ScriptResource.axd?d=stuff&t=ffffffff8425a914 (to load ValidatorUpdateDisplay)
- https://www.domain.com/sitename/ScriptResource.axd?d=stuff&t=ffffffff86668b0e (to load Microsoft.AjaxFramework)
- https://www.domain.com/sitename/ScriptResource.axd?d=stuff&t=ffffffff86668b0e (to load Microsoft AJAX ASP.NET WebForms Framework)
On stage environment I was able to download all of the 4 files in all of the 4 browsers.
On prod environment, I was able to download all of the 4 files in IE7, IE8 and Firefox. on IE6 I was able to download only the first 3 resources. The "Ajax ASP Net WebForms framework" returned a "403 Forbidden" error.
I used ieHttpHeaders to debug http trafic, and it shows the following for the last 2 resources:
GET /sitename/ScriptResource.axd?d=stuff&t=ffffffff86668b0e (to load Microsoft.AjaxFramework) HTTP/1.1
Accept: /
Referer: https://www.domain.com/sitename/Views/subfolder/mypage.aspx
Accept-Language: es-mx
Accept-Encoding: gzip, deflate
User-Agent: Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; .NET CLR 2.0.50727; .NET CLR 3.0.4506.2152; .NET CLR 3.5.30729; .NET4.0C; .NET CLR 1.1.4322)
Host: www.domain.com
Connection: Keep-Alive
Cache-Control: no-cache
Cookie: ASP.NET_SessionId=k1ymlgnpnwuqrg3m1e4ljm3m
HTTP/1.1 200 OK Date: Thu, 01 Dec 2011 16:54:25 GMT Server: Microsoft-IIS/6.0 X-Powered-By: ASP.NET X-AspNet-Version: 2.0.50727 Cache-Control: public Expires: Fri, 30 Nov 2012 16:55:57 GMT Last-Modified: Thu, 01 Dec 2011 16:55:57 GMT Content-Type: application/x-javascript; charset=utf-8 Content-Length: 311158
GET /sitename/ScriptResource.axd?d=stuff&t=ffffffff86668b0e (to load Microsoft AJAX ASP.NET WebForms Framework) HTTP/1.1 Accept: / Referer: https://www.domain.com/sitename/Views/subfolder/mypage.aspx Accept-Language: es-mx Accept-Encoding: gzip, deflate User-Agent: Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; .NET CLR 2.0.50727; .NET CLR 3.0.4506.2152; .NET CLR 3.5.30729; .NET4.0C; .NET CLR 1.1.4322) Host: www.domain.com Connection: Keep-Alive Cache-Control: no-cache Cookie: ASP.NET_SessionId=k1ymlgnpnwuqrg3m1e4ljm3m
HTTP/1.1 403 Forbidden Date: Thu, 01 Dec 2011 16:54:26 GMT Content-Length: 349 Keep-Alive: timeout=15, max=77 Connection: Keep-Alive Content-Type: text/html; charset=iso-8859-1
Any ideas??? maybe a patch???
Thanks in advance