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 … [Continue reading] about Controller in MVC
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 … [Continue reading] about ASP.NET MVC Introduction
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 … [Continue reading] about jQuery Autocomplete
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 … [Continue reading] about Jquery ui tabs
Dialog in jquery
In javascript we use the alert or confirm message box to display message to the end user.Though it is the commonly used way to show informational message to the end user it has the following shortcomings Message box may defer from browser to … [Continue reading] about Dialog in jquery