tags:

views:

171

answers:

3

Hello all,

I am looking for MVC (not asp.net-MVC) tutorial for Web App with C# somewhere. Are they any good online tutorials.

Thanks

A: 

If your looking for an alterantive MCV framework, Spring.Net and I think Castle Windsor have tutorials.

If you just want to write an MVC approach using standard ASP.Net then I can't remeber any specific tutorials but it can be done and isn't that hard to do. You have to write a little plumbing but you can create a base class that implements IHttpHandler to do that for you.

That said, I highly recommend ASP.Net MVC. It's really not that hard to learn or use.

Swanny
+2  A: 

MSDN has a good tutorial for implementing Model View Controller on top of ASP.NET, I did this before ASP.NET MVC came out and it gave me a very good thorough knowledge of the pattern and allowed me to use the MVC pattern in my web applications long before ASP.NET MVC came out.

Tutorial: http://msdn.microsoft.com/en-us/library/ms998540.aspx

There is some more detailed theory of the pattern at: http://msdn.microsoft.com/en-us/library/ms978748.aspx

reach4thelasers
A: 

Castle Project has the Mono MVC framework as well a full stack including ORM, view engine, and IoC. I would recommend getting at least somewhat familiar with all of these concepts separately.

Also as far as I know, Fubu MVC is still alive and kicking. It's a very early for of ASP.NET MVC and by some really smart guys. There is not a tremendous amount of documentation but there is a sample app available and Jermey, Mark, and Chad are usually pretty good about answering questions.

George Mauer