In MVC controller may have one or more
actions and can return different type of result like if you want to return
Json, JavaScript, empty result, return view etc. ActionResults is the base
class of all result type. ActionResults is abstract class. As ActionResults is
the base class for...
16 February 2017
Advantages of MVC
1. One of the main advantage is that it will be easier to manage the complexity as the application is divided into model,view and controller.
2. It gives us the full control over the behavior of an application as it does not use view state or server-based forms.
3. It provides better support for...
13 February 2017
16 December 2016
8 December 2016
1 December 2016
30 November 2016
What is IIS - Internet Information Server
Internet Information Server (IIS) is one of the most popular web servers from Microsoft that is used to host and provide Internet-based services to ASP.NET and ASP Web applications. A web server is responsible for providing a response to requests that come from users. When a request comes from client...