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 components involved in processing the ActionResult and rendering the result are ViewResult ViewEngineResult IViewEngine IView ViewResult is returned by […]
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 if we want to create the method just for assigning to a delegate . Lambda […]
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 phones,embedded devices,smart watches etc. Internet of things means that the devices are communicate with […]
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 HTML.Controller is the component which handles the user’s request ,selects the Model and returns the view. Once […]
WebAPI in MVC 6
The next version of ASP.NET is ASP.NET 5 which has been redesigned from the ground up. ASP.NET 5 supports the concepts that are expected in any modern web application like deploying on cloud and loosely coupled applications. Some of the new features in ASP.NET 5 are HTTP pipeline which we can totally configure to add the […]