Tagged Questions
2
votes
1answer
205 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
763 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 ...
1
vote
0answers
133 views
How do I get a IHttpHandler to do authentication properly?
I have some IHttpHandler implementations where they may optionally have authentication applied to them.
I originally rolled my own Basic authentication but would now like to use IIS's capabilities so ...
1
vote
2answers
149 views
Can you programatically define ASP.NET configuration?
Is it possible to define a large portion, if not the entire, web.config of an ASP.NET application in code? If so, how? Would you use an IHttpModule? In the same vein, can you resolve an IHttpHandler ...
0
votes
1answer
154 views
Url Rewriting in C# .net
how can i rewrite a url so that it shows a path like subdomain.example.com/blog in the address bar but displays a page such as www.example.com/blog/?tag=/subdomain.
here is the process of events I ...
0
votes
2answers
262 views
“Request is not available in this context” in a IHttpModule
I'm getting that exception when I try to access the HttpContext.Current.Request object.
I've seen the responses in l1, l2 and l3 ... so... my question then is :
For what in the world are ...