1.) What are the features of ASP.NET MVC 5 ?
There are some important features of ASP.NET MVC 5 as given below:-
There are some important features of ASP.NET MVC 5 as given below:-
- MVC 5 released on 17 October 2013.
- It runs on .NET Framework 4.5 ,4.5.1 and above.
- It runs on visual studio 2012 and visual studio 2013.
- It supports all the features of MVC 4 Template.
- It supports ASP.NET Identity.
- It provides authentication filters.
- It supports Scaffolding functionality.
- It support ASP.NET Web API 2.
- It Support Bootstrap in ASP.NET MVC Template.
2.) How to use Custom View Engine in ASP.NET MVC ?
If you want to use custom view engine in your mvc template ,you have to register it by using Global.asax.cs file under Application_Start() method as given below.protected void Application_Start() { //Register Custom View Engine ViewEngines.Engines.Add(new CustomViewEngine()); ...............other codes.......... }
Note:- By using this above codes ,you can use custom view engine instead of default one.