0
votes
1answer
44 views
ASP.NET: HttpApplication lifecycle
In an HttpModule, I'd like to intercept the Response after the HttpResponse.Headers collection has been set but before the body of the Response has been added to the Response Strea …
1
vote
2answers
39 views
ASP.NET: Legitimate architecture/HttpModule concern?
An architect at my work recently read Yahoo!'s Exceptional Performance Best Practices guide where it says to use a far-future Expires header for resources used by a page such as Ja …
0
votes
0answers
17 views
HTTPModule BeginRequest should us Response.Redirect or Server.Transfer
We have a URLRewriting module that is using a Response.Redirect in the BeginRequest event method to change the destination page.
Would it be better to use Server.Transfer or Ser …
0
votes
1answer
25 views
ASP.NET: HttpModule
How can I check what content has been sent by or buffered into a Response in my HttpModule?
3
votes
1answer
33 views
ASP.NET: Injecting content into all Response streams
We've got hudrends of ASPX and HTML file in our site, and would like to inject a small JavaScript at the end of each file. If I wanted to do this using and HttpModule (trying to le …
0
votes
3answers
32 views
Render a page inside of an HttpModule?
Anyone got an idea of how to render an aspx page inside of an HttpModule and stream it back to the browser?
0
votes
3answers
20 views
ASP.NET: HttpModule performance
I've implemented an HttpModule that intercepts the Response stream of every request and runs a half dozen to a dozen Regex.Replace()s on each text/html-typed response. I'm concerne …
3
votes
4answers
153 views
IoC Dependancy injection into Custom HTTP Module - how? (ASP.NET)
Hi,
I have a custom HTTP Module. I would like to inject the logger using my IoC framework, so I can log errors in the module. However, of course I don't get a constructor, so ca …
1
vote
1answer
26 views
IIS 7 Http Handler development issue
Hello everyone,
I am using VSTS 2008 + C# + .Net 3.5 + IIS 7.0 to develop an ASP.Net web site. I want to develop an Http module, which could inspect whether incoming request has s …
0
votes
5answers
92 views
How to cache reading from a file .NET 2.0
I have an httpmodule that reads from a csv file for redirection rules.
However, since it's an httpmodule and it is checking on every request, I obviously don't want to read the fi …
0
votes
2answers
26 views
How to log request inputstream with HttpModule, then reset InputStream position.
I am trying to log the contents of an http request, using an IHttpModule like so:
public class LoggingModule : IHttpModule
{
public void Init(HttpApplication context)
{
…
0
votes
1answer
35 views
DLL dependancy and HTTP module
I have an HTTP module in a dll, being used in a web application.
I need to call a class in the web application (using a Interface defined within the dll - so we are not tightly cou …
1
vote
3answers
195 views
HttpModule for Error Handling and Missing Images
I have an HttpModule that I have put together from cobbling a couple of different sources online together into something that (mostly) works with both traditional ASP.NET applicati …
1
vote
3answers
95 views
ASP.NET Response Filter to Reformat the rendered output of ASPX pages?
Hi all,
I've created a simple HttpModule and response stream to reformat the rendered output of web pages (see code snippets below).
In the HttpModule I set the Response.Filter t …
0
votes
1answer
33 views
HttpContext.Current.Session is null in a Module I don’t have access to
I am trying to use this upload control as recommended by someone on here:
http://darrenjohnstone.net/2008/07/15/aspnet-file-upload-module-version-2-beta-1/
So I'm trying to imple …
