Tag: ASP.NET MVC 5
-
Work with ASP.NET MVC 5 Areas from different projects
Read full article on Falafel blog While working on an ASP.NET MVC 5 application, I came across a requirement to use an Area from one project in another project. For example: I have a project A and a project B. I need to use an Area which is part of project B inside of project […]
-
Walkthrough: Login with Twitter Account in ASP.NET MVC 5 APP using ASP.NET Identity 2.0
Walkthrough: Login with Twitter Account in ASP.NET MVC 5 APP using ASP.NET Identity 2.0
-
Resolving Dependencies in ASP.NET MVC 5 using StructureMap
If you are using StructreMap to resolve the dependencies in the ASP.NET MVC 5 application then Steve Smith’s blog post Resolving Dependencies in ASP.NET MVC 5 with StructureMap can be a great help for you. I have followed Steve’s blog to use the StructureMap. I am summarizing the steps as follows: Using the Nuget Package […]
-
Types of ASP.NET MVC Views
Type of ASP.NET MVC View depends on the way data being passed to it from Controller. There are three ways data can be passed to Views from Controller. They are as followsUsing ViewBag or ViewData Using object of the model which is strongly typed Using any dynamic type value
-
Resolving Dependencies in ASP.NET MVC 5 using Unity Container
In this post you will learn to use UNITY Container to resolve dependecy in ASP.NET MVC 5 application.