I have a master page with a user control. In one of my content pages, I update this usercontrol by forcing it to postback with a javascript function :
function postBackHiddenField(hiddenFieldID)
{
var hiddenField = $get(hiddenFieldID);
if (hiddenField)
{
__doPostBack(hiddenFieldID,'');
}
}
It works with IE7 and Firefox, but with IE6 I get the following message :
The error description that appears when I double-click on the bottom left error image is the following :
"The download of the specific resource has failed"
I searched on google about the 12019 error code and people say that this can be fixed by disabling the Tracing, but I already did that and it didn't resolve it.
@Paul : yes it's a server control, and I had to disable event validation and viewstate encryption because I had some error messages about the security :
@chetan : I already checked this page, it says that 12019 means that "The requested operation cannot be carried out because the handle supplied is not in the correct state." but that does not really explains why I get the error only on IE6, and how to fix
it.
I have the same problem, but I'm not using any UserControls in my page. Last week I deployed a version of my App that was only tested with IE6 and was working fine.
Now I changed a lot of CSS code to get the page shown in IE6, IE7 and Firefox 2.x in the same way.
Right now my page works fine in IE7 and Firefox, but I get the 12019 error on every page/area, where I uses an ajax:UpdatePanel and click a server control inside the panel while browsing with IE6. There is no differece between Debug and Release Mode.
I was getting the same error on my development machine, using the built-in server. Out of curiosity, I deployed it to a server2k3 box running full IIS, and I'm not getting the error.
annalady
Member
505 Points
203 Posts
IE 6 : Sys.WebForms.PageRequestManagerServerErrorException - 12019
Jun 18, 2007 05:09 PM|LINK
Hello
I have a master page with a user control. In one of my content pages, I update this usercontrol by forcing it to postback with a javascript function :
function postBackHiddenField(hiddenFieldID)
{
var hiddenField = $get(hiddenFieldID);
if (hiddenField)
{
__doPostBack(hiddenFieldID,'');
}
}
It works with IE7 and Firefox, but with IE6 I get the following message :
The error description that appears when I double-click on the bottom left error image is the following :
"The download of the specific resource has failed"
I searched on google about the 12019 error code and people say that this can be fixed by disabling the Tracing, but I already did that and it didn't resolve it.
Anyone knows how I could make this thing work ?
paul.vencill
Contributor
6716 Points
1358 Posts
Re: IE 6 : Sys.WebForms.PageRequestManagerServerErrorException - 12019
Jun 18, 2007 09:07 PM|LINK
EventValidation might also be the cause here, is your hiddenfield a server control?
chetan.sarode
All-Star
53419 Points
9044 Posts
Re: IE 6 : Sys.WebForms.PageRequestManagerServerErrorException - 12019
Jun 19, 2007 03:15 AM|LINK
Please refer to this: http://support.microsoft.com/kb/193625
Senior Software Engineer,
Approva Systems Pvt Ltd, Pune, India.
annalady
Member
505 Points
203 Posts
Re: IE 6 : Sys.WebForms.PageRequestManagerServerErrorException - 12019
Jun 19, 2007 08:05 AM|LINK
Hi
Thanks for your answers
@Paul : yes it's a server control, and I had to disable event validation and viewstate encryption because I had some error messages about the security :
@chetan : I already checked this page, it says that 12019 means that "The requested operation cannot be carried out because the handle supplied is not in the correct state." but that does not really explains why I get the error only on IE6, and how to fix it.
chetan.sarode
All-Star
53419 Points
9044 Posts
Re: IE 6 : Sys.WebForms.PageRequestManagerServerErrorException - 12019
Jun 20, 2007 03:19 AM|LINK
Have you got any solution ?
If got any point, post it.
it will help for others also [:)]
Senior Software Engineer,
Approva Systems Pvt Ltd, Pune, India.
annalady
Member
505 Points
203 Posts
Re: IE 6 : Sys.WebForms.PageRequestManagerServerErrorException - 12019
Jun 20, 2007 09:40 AM|LINK
I'm working on it, I'll post a message if I find a solution.
But I definitely think that the problem comes from my usercontrol, not the postback
dirkb
Member
72 Points
15 Posts
Re: IE 6 : Sys.WebForms.PageRequestManagerServerErrorException - 12019
Jun 21, 2007 10:03 AM|LINK
I have the same problem, but I'm not using any UserControls in my page. Last week I deployed a version of my App that was only tested with IE6 and was working fine.
Now I changed a lot of CSS code to get the page shown in IE6, IE7 and Firefox 2.x in the same way.
Right now my page works fine in IE7 and Firefox, but I get the 12019 error on every page/area, where I uses an ajax:UpdatePanel and click a server control inside the panel while browsing with IE6. There is no differece between Debug and Release Mode.
need some help please...
Thanks,
Dirk
jvenema
Member
24 Points
7 Posts
Re: IE 6 : Sys.WebForms.PageRequestManagerServerErrorException - 12019
Jun 22, 2007 12:55 PM|LINK
For what it's worth:
I was getting the same error on my development machine, using the built-in server. Out of curiosity, I deployed it to a server2k3 box running full IIS, and I'm not getting the error.
-Jerod
annalady
Member
505 Points
203 Posts
Re: IE 6 : Sys.WebForms.PageRequestManagerServerErrorException - 12019
Jun 22, 2007 03:54 PM|LINK
Hi
I'm already using IIS instead of the visual studio built-in server, under windows 2003 server.
But thanks anyway :)
chetan.sarode
All-Star
53419 Points
9044 Posts
Re: IE 6 : Sys.WebForms.PageRequestManagerServerErrorException - 12019
Jun 23, 2007 03:52 AM|LINK
Just using IIS the error was solved or did u set anything also ?
Senior Software Engineer,
Approva Systems Pvt Ltd, Pune, India.