Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

4
votes
2answers
570 views

Session is null in IRouteHandler.GetHttpHandler with Asp.net routing

I'm trying to get Session enabled in the GettHttpHandler method of my IRouteHandler classes but session is always null. Could someone tell me what I'm doing wrong? In global.asax I have ...
3
votes
1answer
694 views

ASP.NET MVC 2.0 + Implementation of a IRouteHandler does not fire

Can anybody please help me with this as I have no idea why public IHttpHandler GetHttpHandler(RequestContext requestContext) is not executing. In my Global.asax.cs I have public class MvcApplication ...
2
votes
2answers
955 views

IRouteHandler in Web Forms: Routing requests that require HttpContext.User

I'm trying to add a pretty basic route to an Asp.Net Web Forms app (running under IIS 7, integrated mode): for requests coming to http://mydomain.com/foo/ I would like to show the results of a dynamic ...
2
votes
3answers
2k views

How to Make ASP.NET MVC Recognize IHttpAsyncHandler from IRouteHandler.GetHttpHandler()?

In this question & answer, I found one way to make ASP.NET MVC support asynchronous processing. However, I cannot make it work. Basically, the idea is to create a new implementation of ...
1
vote
1answer
68 views

Only Serve Static Files From a Specific Directory via Code

I am looking for a code based solution to only serving static files from a specified directory using ASP.NET routing rather than specify a HttpHandler in the Web.config. For example: I have the ...
1
vote
2answers
307 views

Custom IRouteHandler route screws up MVC link building

I have a custom routehandler in ASP.NET MVC2 to catch all url's at a prefixed path like this: routes.IgnoreRoute("{resource}.axd/{*pathInfo}"); routes.Add(new Route("@api/{*all}", new ApiHandler())); ...
1
vote
1answer
293 views

Protecting images in ASP.NET MVC (w/ custom RouteHandler)

I created a custom RouteHandler for images that I want protected. My RouteHandler simply takes a new route (graphics/{filename}) and does a lookup for the true file path, sets the mime type, and ...
0
votes
0answers
28 views

How to set dynamically the verb in a IRouteHandler

How to set the verb (GET, HEAD, POST) dynamically in your custom IRouteHandler.