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 […]
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 browser It is not easy to customize the fixed layout of the […]
Datepicker in jQuery
jQuery has many different types of widgets which makes it easy to add different types of functionalists in our applications.One commonly used widget is Datepicker. Most of the applications provides user the option to select the dates.So instead of allowing the user to select date in any arbitrary format which is also inconvenient for the user, we can use the datepicker […]