MVC is somewhat different to standard ASP.NET.

In ASP.NET MVC, controls on your page directly (or indirectly) call actions
on your controllers.

In ASP.NET, your controls directly call methods in your codebehind page. The
classic example of this would be an ASP.NET Button and its respective
btnMyButton.Click method in the codebehind (a simple example of this would
be adding a button to a page, double clicking the button and examining the
method that is created.

If you are totally unfamiliar with .Net, I'd suggest ASP.NET (non-MVC)
first; although it promotes a rather cumbersome and broken programming
model, it does work and it is easy to grasp. MVC isn't particularly
difficult to learn once you've got the basics down.

On Fri, Jan 7, 2011 at 8:54 PM, Jonathan Creamer
<[email protected]>wrote:

> I am a little new to .net and trying to grasp a few concepts.
>
> I have been writing in Coldfusion for a while, and in CF there is an event
> under the Application.cfc called onRequest() that fires each time there is a
> page.
>
> What in .net is used to capture the request information?
>
> And moreover once is there a way to latch on or extend the Request event to
> fire off my own events?
>

Reply via email to