Monday, June 7, 2010

Callback and Manual Partial Page Rendering

As Callback doesn’t cause postback and page rendering neither full nor even partial. We can communicate with server (IIS) and our server side code runs there successfully and could rebind our controls like Dropdownlist, Gridview, Listview, Datalist, Repeater or any server side control to which you assign data but problem is when page wont render, its controls wont render and if controls wont render then changes wont reflect and when changes wont reflect there wont be anything at front end to show on webpage.
Article is mainly about Callback and Rendering Controls but through this tutorial you can also learn many other things like brief introduction of Postback, Rendering, Create server side controls dynamically, Create Datatable dynamically in memory to bind with create server side controls means binding, get server side control at client side and set their properties and registering client side event of server side control from/through server side code.
First of all, I would like to brief some terms which I believe every web developer should aware of.

Postback
Postback is a mechanism of communication between client-side (browser) and server-side (IIS). Through postback all contents of page/form(s) sent to the server from client for processing and after following page life cycle all server side contents get render into client side code and client (browser) display that contents. Callback is another way of communication between server and client. Callback doesn’t follow the page life cycle which followed by in standard postback and doesn’t even cause Rendering.

Rendering
Rendering is process of converting server side code/contents into client side code/content so client (browser) can understand that code and could display the output. Browser can understand or you may say decode code of client side languages and scripts like HTML, DHTML, XHTML, Javascript, Vbscript and a long list.
If rendering wont happen then changes won’t reflect which happens on server at client side. Ajax leverages partial postback automatically whereas callback doesn’t cause, so programmer needs to perform that task manually.
ASP.NET team has created RenderControl method with its each control so by using that control we can render our control very easily.

CALLBACK
CALLBACK is lightweight process, It uses well known xmlhttp object internally to call server side method, it doesn’t cause page postback so doesn’t cause page rendering so we to show output at client side we need to make output html ourselves and render controls manually.

ICALLBACKEVENTHANDLER
ICALLBACK implemented in asp.net by using ICALLBACKEVENTHANDLER interface has two methods, one of them used to be call from javascript (client side code) and other one return result asynchronously back to javascript function.
We just need to perform some action through server side code at server side and needs to return results but results could are in instance or object of any class which could be not easy for javascript code to handle easily so here we prefer JSON which stands for Javascript Object Notation.

Real Time Scenario with implementation
Suppose we have categories, subcategories, products data and needs to populate categories and subcategories which depend upon categories data would be populate in two different dropdownlists. For products data which is multicolumn and we need to show that data in tabular format so I would prefer Gridview control.
So the situation would be load/populate categories on Page_Load and load/populate subcategories on the basis of selected category using callback and finally load products into Gridview on the basis of selected subcategory.
Before starting coding, I would like to write Pseudo code for better understanding.

Pseudo Code
  1. Create Server side controls e.g. Dropdownlists and Gridview
  2. Load Categories on Page load
  3. Implement ICallbackEventHandler interface
  4. Create subcategories data in server memory to bind to Subcategory dropdownlist.
  5. Render control (subcategory dropdownlist) and show output.
  6. Create products data in server memory to bind to Products gridview.
  7. Render Control (products gridview) and return rendered contents to client side to show
  8. Set innerHTML of each control by rendered contents
Download Code from here

http://sites.google.com/site/akshatsharma80/home/asp-net/callback-and-manual-partial-page-rendering?pli=1

No comments:

Post a Comment