As we have seen in the last article , Controller in MVC application is the component which takes care of the user input ,as well as defines the application logic.It performs operations on the model and then selects the view to render. Routing has it’s own specific responsibility.It acts as the interface between the clients […]
Archives for December 2014
Controller in MVC
Controller is one of the most important component in an MVC application since it acts as a coordinator between the view and the model and also handles the users requests.The user’s request is received by the controller which requests the model to perform different CRUD operations ,based on the request, and then decides the result to return […]
ASP.NET MVC Introduction
ASP.NET MVC is another option available to ASP.NET developers for creating web applications on the .NET platform. ASP.NET MVC is an implementation of the MVC pattern. MVC is an architectural pattern which provides guidelines on how to structure the application.It is specially suited to the web applications of today as it provides a loosely coupled approach to structure the […]
jQuery Autocomplete
Most of the applications have input functionality ,user can enter values in the input fields on the page.There may be input fields for different things like giving user the option to enter his birthplace, city ,country and lot of other options.If the user has to type values for all of these fields it can be […]
Jquery ui tabs
Most of the web applications contains more content then what can be displayed on a single page to the user.Also the application may have different groups or categories related to the different entities in the application.In an e-commerce site for example there can be categories for books,electronics ,clothes etc.If we are going to display all […]