Posts tagged “MVC”

Understanding Route Order in ASP.NET MVC

Scott Walker · Apr 13, 2013

Routing

I was having problems with a URL and my controller recognizing it and found out that where you add the route within global.aspx.cs is very important.

đŸ’Ŧ 0 MVC

Loading Blog Categories in an MVC View

Scott Walker · Dec 21, 2010

PROBLEM:

To be able to get all Blog data and Categories data into a view, both of which are stored in a database.

SOLUTION:

Add a Categories method to the Blog model which will pull all Categories associated with the Blog.

I added the below code to my Blog Model.

đŸ’Ŧ 0 MVC