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 ?