I had this problem when trying to set up GZ output compression. It was
compressing the JavaScript from WebResource.axd which was not good. If
you are using any output filters, try disabling them or something to
see if that fixes your problem.
-Michael Placentra II
> I have a website that (apparently) is not serving WebResource.axd to the Web
> browser. When a page containing a reference to a resource in WebResource.axd
> (like WebForm_AutoFocus) is displayed in the Web browser, Internet Explorer
> reports a Runtime Error of "Object expected".
>
> I cannot find any support articles that address this problem.
ashwin - 04 Oct 2007 14:46 GMT
Thank you for replying, Mike.
Can you tell me where to look for output filters?

Signature
ashwin
> I had this problem when trying to set up GZ output compression. It was
> compressing the JavaScript from WebResource.axd which was not good. If
[quoted text clipped - 9 lines]
> >
> > I cannot find any support articles that address this problem.
Mike Placentra II - 04 Oct 2007 22:36 GMT
> Thank you for replying, Mike.
>
> Can you tell me where to look for output filters?
> --
> ashwin
They can be added in Global.asax in Application_BeginRequest.
Here's an example:
Response.Filter = New myStream(Response.Filter)
-Michael Placentra II
ashwin - 12 Oct 2007 21:40 GMT
Hi Mike,
It turned out to be an issue with SiteMinder. I had to uncheck “Verify that
file exists” for the “Wildcard application map” for SiteMinder (Website
Properties->Home Directory tab->Configuration). Once I made the change, my
browser started receiving webResource.axd.
Thank you for help, Mike

Signature
ashwin
> > Thank you for replying, Mike.
> >
[quoted text clipped - 9 lines]
>
> -Michael Placentra II