Click here to Skip to main content
15,886,795 members
Articles / Web Development / ASP.NET

Fast Postback and Model Binding

Rate me:
Please Sign up or sign in to vote.
4.86/5 (28 votes)
27 Feb 2014CPOL6 min read 37.2K   989   37  
Faster way to save data on postback and simplified model binding with asp.net controls
This is an old version of the currently published article.

Introduction

When asp.net MVC came to the market, many developers simply had switched to MVC because they have seen two major flaws in asp.net Web Form architecture. 1. Testability and 2. Postback model. While other stuffs like ViewState, Static Control Ids was easy to overcome but Postback model and testability was hard to replace. I would not like to debate on separation of concerns in this article. 

<o:p>

This article provides you an easy work around on how you can omit all unnecessary life cycle events simply by using Generic Handler instead of posting data back to the same page. Side by Side you will be able to retain the beauty and flexibility of Lifecycle of your page for first time load or whenever needed. In this approach, you don't need to abandon any rich Server Side Controls which is designed to provide you a huge set of flexibility and Rapid Application Development.   

Background

This article assumes that you have a basic understanding of asp.net page life cycle and postback. You should also know a little bit about what is generic handler. You may wish to brush up your knowledge with the following articles: 

 Current Approach 

Consider you are developing a form where you require user to fill employee data and submit. When the form is submitted, by default it is submitted to the same page. Here, the following things occur:

  1. All control gets initialized and default data is populated to each control.
  2. Populate data of controls like drop down list, etc. If you don’t populate it manually, it might be maintained by ViewState. Well, I would not go in detail to keep this article focused on my topic.
  3. All ViewState data is applied to their respective controls (Load ViewState).
  4. Controls value gets over-written with the posted form data (Load PostbackData).
  5. PageLoad event gets triggered. You might have excluded the code execution in this by putting all your code within if(!IsPostback) condition. 
  6. Click event triggers. This is the place where you are getting values of you server controls to your entity model. Then, you save the data to the database.
  7. Redirect to some other page.  

You might be observing that your only job is to save form data to the database and then, redirect to other page. So, Instantiating controls, populating values to controls, loading view state, copying data from controls to your model are unnecessary and an overhead. If you wish to redirect to another page after saving the data, why playing with controls, ViewState and life-cycle? 

Suggested Approach

The new approach suggests the idea where we don’t actually post the data back to the same page but, to a generic handler (.ashx). This would include the following steps:

  1. Post your data to generic handler. Bind posted form data to Entity model.
  2. Save model to the data base. 
  3. Redirect to other page. 

To perform the first step, you can bind posted form data to the model using Bind method of ModelBinder class. In this method, I have simply looped through all the property of the model entity and fetched the corresponding form data to populate it.

Image 1

The above picture is the screen shot of the demo application. 

Using The Code 

With this article, I have provided a sample which performs the basic CRUD operations on Employee using Fast Postback approach. The sample also provides you an easy way to bind form data with entity and entity data with controls.

Using this approach involves the following steps:

1. Create a new Generic Handler, and call method to bind data. Write your code to save your data here in ProcessRequest method. Then, redirect to other page. 

C#
public void ProcessRequest(HttpContext context)
{
	if (context.Request.HttpMethod == "POST")
	{
		Models.Employee emp = ModelBinder.Bind<models.employee>();
		using (CompanyEntities db = new CompanyEntities())
		{
			if (context.Request.QueryString["action"] == "create")
				db.Employees.Add(emp);
			else
				db.Entry(emp).State = EntityState.Modified;
			db.SaveChanges();
		}
		context.Response.Redirect("~/Employee/List.aspx");
	}
	else
	{
		context.Response.Write("Either you are trying to hack my system or you have visited this page accidentally.");
	}
}
</models.employee>

2. In your WebForm page, set PostBackUrl property of your submit button to the newly create Handler. 

<div class="form-submit">
            <asp:button id="btnSubmit" runat="server" text="Submit" postbackurl="~/Employee/Save.ashx?action=edit" />
</div>

 Here I assume that all the required authentication and authorizations have been processed at HttpModule level. Else, you may wish to consider manual authentication/authorization in your Handler.  

Image 2

The above picture is the screen shot of the demo application. 

Model Binding

The sample code provided also provides a basic approach to bind models with Controls and form data. You may extend this code to implement things based on your need. If you wish to implement the model binding at a detail level you may wish to consider this link.  

<o:p>

Points of Interest  

  • The provided sample has also used FriendlyUrls for asp.net. So, for beginners, it might act as a sample on how you can easily generate Restful URL in Asp.Net web forms.
  • The provided sample also uses entity framework. So, for beginners, it might act as a very light-weight sample on using entity framework.
  • The attached code can also be used as a sample for beginners on how a generic handler can be used for such kind of operation in a situation where only a set of code processing is needed at server side. 

 Future Consideration

Well, this article has just provided you the idea and sample implementation, I am planning to create a small library to handle more complex situations also with this approach. Some of them include:

  • Binding more complex controls with model.
  • Binding form data to IEnumerables
  • Transferring the control back to the page when exception/error occurred. 

Conclusion 

Wherever you want to improve performance of your web form application, you can easily switch to this approach for simple web forms along with taking advantage of page LifeCycle and server controls during first time load. Moreover, this approach may exists side by side with the existing post back approach for some complex pages where you may not wish to implement this approach.  

I always welcome your feedback/comment/suggestions to improve it further. 

History 

  • Aug 14, 2013: First version created. 

License

This article, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)


Written By
Architect
India India
Anurag Gandhi is a Freelance Developer and Consultant, Architect, Blogger, Speaker, and Ex Microsoft Employee. He is passionate about programming.
He is extensively involved in Asp.Net Core, MVC/Web API, Node/Express, Microsoft Azure/Cloud, web application hosting/architecture, Angular, AngularJs, design, and development. His languages of choice are C#, Node/Express, JavaScript, Asp .NET MVC, Asp, C, C++. He is familiar with many other programming languages as well. He mostly works with MS SQL Server as the preferred database and has worked with Redis, MySQL, Oracle, MS Access, etc. also.
He is active in programming communities and loves to share the knowledge with others whenever he gets the time for it.
He is also a passionate chess player.
Linked in Profile: https://in.linkedin.com/in/anuraggandhi
He can be contacted at soft.gandhi@gmail.com

Comments and Discussions

Discussions on this specific version of this article. Add your comments on how to improve this article here. These comments will not be visible on the final published version of this article.