Is it correct to say that an ASP .NET MVC application is an HTTPModule?
Posted
by
stormwild
on Stack Overflow
See other posts from Stack Overflow
or by stormwild
Published on 2013-07-01T16:27:21Z
Indexed on
2013/07/01
17:06 UTC
Read the original article
Hit count: 778
I just wanted to clarify my understanding of ASP .NET MVC (current version is 4).
I was reading this article on How does ASP.NET MVC work?
So, how does ASP.NET know how to route requests to MVC? The answer lies in web.config. There is a new http module added to modules collection in ASP.NET MVC projects
So basically an mvc application is implemented as an HTTPModule or at least the url routing portion of an mvc app?
Would it be possible for one to create and register a custom routing module and then possibly create their own micro mvc framework like Sinatra in Ruby or Slim in PHP?
© Stack Overflow or respective owner