webresource.axd

Webresource.axd doesn't load on my asp.net application running on my web farm

I'm working on an ASP.net web application. I'm getting errors on some of my pages where I get runtime JavaScript errors. I've narrowed the problem down to a single ASP Menu control on the master page. I created a blank page with just the ASP Menu control. The ASP Menu control is bound to Web.sitemap. The page intermittently gives ru...

Custom WebResource.axd implementation - rational or not?

Hello! We are about to move a bunch of static image and JS files into an assembly rather than hosting them as stand-alone files. Having in mind that WebResource.axd is the standard way of referencing them, would it be rational to create a custom resource handler for the following reasons: GZIP content when browser supports it Permanen...

Creating custom httphandler in web.config: Am I at risk of exposing a 'Padding Oracle' vulnerability?

Considering the recent ASP.NET vulnerability, what should I look for in my httphandlers that would cause such a Padding Oracle vulnerability? Asked in another way... what did MSFT do wrong and what did they fix in their handlers? ...