Andrey
Andrey

Reputation: 21285

Asp.Net Routing to a generic handler

I Have a generic handler that's serving member logo images:

http://site.com/logo.ashx?memberid=123

Now, I want to use it by caling a url like:

http://site.com/logo/john.jpg

So I would create a route for that (pattern: "logo/{username}.jpg"). But, my problem is - how do I retrieve {username} when inside ProcessRequest() of my generic handler? It's not a page, so I can't get Page.RouteData.Values.

Any ideas?

Thank you, Andrey

Upvotes: 4

Views: 3943

Answers (1)

Andrey
Andrey

Reputation: 21285

I found this good post that answered my question: http://petesdotnet.blogspot.com/2009/09/generic-handlers-and-aspnet-routing.html

Upvotes: 4

Related Questions