Search results for query: *

  1. Rouchie

    httpModule stops WebResource.axd from working correctly

    I'm not entirely sure, but I think I might have solved it - although not sure yet... If I force the URL to lower and also reference webresource.axd in the module check, then it seems to work: If Not ctx.Request.RawUrl.ToLower.Contains("login.aspx") AndAlso Not...
  2. Rouchie

    httpModule stops WebResource.axd from working correctly

    I have a httpModule that's supposed to check for a session value before sending the page contents to the user. If the session value doesn't exist, it redirects the user to a login page. The problem is that this module is somehow preventing WebResource.axd from working. When the module is...
Back
Top