Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

ASP.NET MVC 3 Tutorials desperately needed [closed]

I am a university student who is trying to create a conference scheduler (in ASP.NET MVC 3) that has the ability for the user create conference sessions based on dates and times and for attendees to add sessions to their personalized timetable.

Can anybody please please please recommend any tutorials / websites / blogs that demonstrate how to create something similar that I can use as a starting point to both create this project / learn how to add the features I require?

Your help would be greatly appreciated:)

Samantha

like image 546
Samantha Clatworthy Avatar asked Oct 04 '11 07:10

Samantha Clatworthy


People also ask

What is Microsoft ASP.NET MVC 3?

ASP.NET MVC 3 is a framework for developing highly testable and maintainable Web applications by leveraging the Model-View-Controller (MVC) pattern.

What is @model in Cshtml?

The @model directive allows access to the list of movies that the controller passed to the view by using a Model object that's strongly typed. For example, in the Index.cshtml view, the code loops through the movies with a foreach statement over the strongly typed Model object: CSHTML Copy.

How do I access model controller?

In Solution Explorer, right-click the Controllers folder and then click Add, then Controller. In the Add Scaffold dialog box, click MVC 5 Controller with views, using Entity Framework, and then click Add. Select Movie (MvcMovie. Models) for the Model class.


1 Answers

For me, a real world sample is always the most useful where to start :

http://www.asp.net/entity-framework/tutorials/creating-an-entity-framework-data-model-for-an-asp-net-mvc-application

There is a real world sample there called The Contoso University Web Application

Also, look at the ASP.NET MVC Dynamic Universal Map of Resources :

http://msdn.microsoft.com/en-us/library/gg416514(VS.98).aspx

The following conference session videos are great the start with as well :

MVC 3 – 101 by Scott Hanselman : http://channel9.msdn.com/Events/DevDays/DevDays-2011-Netherlands/Devdays002

ASP.NET MVC 3 @:The Time is Now by Phil Haack : http://channel9.msdn.com/Events/MIX/MIX11/FRM03

ASP.NET + Packaging + Open Source = Crazy Delicious by Scott Hanselman : http://channel9.msdn.com/Events/PDC/PDC10/FT01

And there are so many out there on Channel9

As a blog suggestions, My Blog is better than Phil Haack's :D

like image 66
tugberk Avatar answered Sep 30 '22 11:09

tugberk