ASP.NET 5 ,codenamed ASP.NET vNEXT is the next version of ASP.NET.It includes significant changes from the prvious versions of ASP.NET.This is because ASP.NET 5 has been redesigned for the web applications of today.Some of the important features of … [Continue reading] about Creating WebApplication in ASP.NET 5
Role of ViewEngine
The role of the action method in the controller is to return an ActionResult,which often is ViewResult.The ViewResult is rendered by the ViewEngine so that the user is returned HTML or other appropriate response. Some of the important … [Continue reading] about Role of ViewEngine
Lambda expressions
To describe in simple words Lambda expressions are functions which don't have a name .Lambda expressions have the following characteristics. We can assign a lambda expression to a delegate.The advantage is that we don't need to create a new method … [Continue reading] about Lambda expressions
What is Internet Of Things ?
Internet was used mainly by humans for information interchange and interaction.This can be called the internet of the people.Internet of things on the other hand is a collection of things. Things can be a vast array of things such as smart … [Continue reading] about What is Internet Of Things ?
ViewEngines in MVC
In an MVC application there are three main components Model View Controller Model contains the application data and the business rules for our application.View is the representation of the Model to the end user ,usually through some GUI such as … [Continue reading] about ViewEngines in MVC