Creating Wizard in ASP.NET MVC (Part 2)
Posted
by bipinjoshi
on ASP.net Weblogs
See other posts from ASP.net Weblogs
or by bipinjoshi
Published on Tue, 22 Oct 2013 08:36:00 GMT
Indexed on
2013/10/22
9:56 UTC
Read the original article
Hit count: 456
In Part 1 of this article series you developed a wizard in an ASP.NET MVC application. Although the wizard developed in Part 1 works as expected it has one shortcoming. It causes full page postback whenever you click on Previous or Next button. This behavior may not pose much problem if a wizard has only a few steps. However, if a wizard has many steps and each step accepts many entries then full page postback can deteriorate the user experience. To overcome this shortcoming you can add Ajax to the wizard so that only the form is posted to the server. In this part of the series you will convert the application developed in Part 1 to use Ajax.
http://www.binaryintellect.net/articles/8e278bfa-7244-4e3e-b5aa-2954a91331da.aspx
© ASP.net Weblogs or respective owner