Tagged Questions

4
votes
3answers
282 views

What is better: caching through HttpContext.Current.Cache or just a static?

Last night I wrote up my first IHttpModule to do some request processing. I'm using a regular expression to inspect the raw url. The IHttpModule will be called on every request, so it seems reasonable ...
3
votes
2answers
255 views

Accessing the Form collection in an IHttpModule causes event Handler not to get called on Default page

Ok, this is a weird one. I've created a simple sample site to demonstrate the issue. In it, I have a Default.aspx Page that has a button on it: <asp:Content ID="BodyContent" runat="server" ...
2
votes
1answer
450 views

Frame Redirect in C#

I would like to execute a frame redirect in C# from my managed module for the IIS 7. When I call context.Response.Redirect(@"http://www.myRedirect.org");the correct page is shown but also the address ...
2
votes
1answer
203 views

Detect mapped virtual directories from an ihttpmodule in a c# .net application

I have a .net website which contains an IHttpModule I wrote to do certain tasks (authorisation etc). But within the website there are a number of virtual directories that are mapped to third party ...
2
votes
2answers
728 views

Disabling HttpModule on certain location

I know that this has already been asked here but the answer (using a handler instead) doesn't solve the issue, as I'm using a third party component that doesn't implement IHttpHandler. So, again, is ...
2
votes
2answers
423 views

Static files and authentication in ASP.net

Say I have a virtual folder /topFolder/ in IIS7, and in that folder there can be any file that can be displayed in a browser (xml, html, swf, doc etc - typically "unmanaged" resources from the IIS ...
1
vote
1answer
241 views

NTLM Authentication. Can't get it to work in an IHttpModule. AcceptSecurityContext always fails

Here's the setup. On an ASP.Net site, we want to have NTLM authentication on specific pages. The way this will work is there will be a module that will only respond to those pages, and then do the ...
1
vote
1answer
114 views

Why there is no way to unbind an HttpApplication event handler out of IHttpMudle initizlization scope

Let's say we want to execute some action only once or a couple of times after web application has started and during a web request. public class WebApp : HttpApplication { public override void ...
1
vote
1answer
314 views

Inject js from IhttpModule

i trying to inject js to page (to tags) by using ihttpmodule. but js isn't injected. what i did: the page: <%@ Page Language="C#" AutoEventWireup="true" CodeBehind="Default.aspx.cs" ...
1
vote
1answer
81 views

Okay to implement a .NET event on an IHttpModule?

I've declared an event on an HTTP Module so it will poll subscribers for a true/false value to determine if it should go ahead with its task of tweaking the HTTP Response. If only one subscriber ...
1
vote
2answers
982 views

export data from WCF Service to excel

I need to provide an export to excel feature for a large amount of data returned from a WCF web service. The code to load the datalist is as below: List<resultSet> r = ...
0
votes
1answer
125 views

IHttpModule Response.Filter Write with No Close HTML

I wrote a custom IHttpModule but it is causing issues when there is no closing tag in the source. I have ran across a few pages in the CMS I am running this for where the .aspx page is used more ...
0
votes
1answer
187 views

HttpWorkerRequest.GetBytesRead() always returns 0

Anyone know why HttpWorkerRequest.GetBytesRead() always returns 0, even during and after a file upload? Would like to use this method to build a progress bar.
0
votes
1answer
129 views

How to manipulate a header and then continue with it in C#?

I want to replace an old ISAPI filter that ran on IIS6. This filter checks if the request is of a special kind, then manipulates the header and continues with the request. Two headers are added in the ...
0
votes
1answer
374 views

ASP.NET Webforms IHttpModule Singleton

I have a class that implements IHttpModule in a separate assembly from a website. The module implementation intercepts requests and rewrites urls for the website. The mappings are stored in a ...
0
votes
3answers
701 views

My UrlRewrite IHttpModule remove my second QueryString

I have a custom url rewriter function that works fine. But when i are going to use a second querystring on my url, that remove the second querystring. my friendly url: /gallery/view-ablum/?q=1 i the ...