To improve the overall performance and responsiveness of your ASP.NET MVC application, you may wish to execute the code asynchronously. This article discusses both server-side and client-side scenarios and shows how to create asynchronous controllers and use the SessionState attribute.
Articles Written by Bipin Joshi
Using Areas in ASP.NET MVC Application
A large application often consists of functionally independent modules, which can make organizing the various models, views and controllers tedious. Bipih Joshi shows you how to split your application in what is known as Areas and how Areas are used in an ASP.NET MVC application.
Confirming Delete Operations in ASP.NET MVC
Seeking confirmation of some important action such as deleting a record is a common practice in web applications. This article illustrates how to implement either a dialog box or a separate confirmation page for user confirmation in ASP.NET MVC.
Implementing AutoPostBack in ASP.NET MVC
The AutoPostBack feature is a handy way to refresh a page when data being displayed depends on the selection made in a DropDownList. Learn how to add this feature programmatically to ASP.NET MVC applications that rely on HTML to render the DropDownList.
Understanding Database Initializers in Entity Framework Code First
Bipin Joshi shows you how to use the inbuilt Entity Framework Code First database initializers in your application and how to create your own database initializers.
Creating a Tag Cloud for Your ASP.NET Blog
Most blogs display a Tag Cloud that presents keywords in font sizes proportional to the number of blog posts having that tag. If you are building your own blog engine or website you will need to build the tag cloud on your own. This article shows how to do just that.
