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

The ICallbackEventHandler

Rate me:
Please Sign up or sign in to vote.
4.77/5 (19 votes)
21 Jun 2008CPOL3 min read 79.8K   1.7K   47   9
So, you are interested in knowing about the ICallbackEventHandler which can be "used to indicate that a control can be a target of a callback event on the server", according to MSDN. Hop in.

Introduction

So, you are interested in knowing about the ICallbackEventHandler, which can be "used to indicate that a control can be a target of a callback event on the server", according to MSDN.

A very concise and correct definition of the interface which explains everything, except I can see you scratch your head and wonder what's in it for you. Stick along with this article and hopefully, you would have a new toy to impress your peers at work!

The problem

Suppose you need to build a simple ASP.NET 2.0 web page which has a section to show some quotes. You want to randomize these quotes such that the user sees new quotes every few seconds (this is because of the crappy content, but try telling that to the content writer!).

A few possible solutions

  1. Postback the complete page after a few seconds and put in a random quote, with big usability and server load issues as a side-effect.
  2. Put in an UpdatePanel around the section and reload the section by setting a Timer, which is a better solution compared to option 1 in terms of usability, but has really no difference on the server load.
  3. Implement custom code to fetch data from the server using the XMLHTTP object, which is a good choice since it does not have the issues aforementioned.
  4. Implement the ICallbakEventHandler, which... happens to be the point of this article, isn't it?

Solution I prefer

I would prefer using the ICallbackEventHandler interface to solve this problem for the following reasons:

  1. The ICallbackEventHandler is a wrapper on XMLHTTP, and there would not be a lot of JavaScript code to get it working.
  2. There are no complex web controls which need to be rendered on the UI because of this call to the server.
  3. As the target website is in ASP.NET 2.0, I would prefer using the implementation of the framework out of the box.
  4. The load on the server is limited to calling the methods needed without the burden of a full page postback.

Show me the code

I know you are excited to see this implemented, so now would be a good time to download the source code for the sample application amd use it as a reference for the remaining sections of this article.

All this while, we have been talking about the ICallbackEventHandler interface which looks like so:

C#
public interface ICallbackEventHandler
{
   string GetCallbackResult();
   void RaiseCallbackEvent(string eventArgument);
}

Implementing this interface and getting the code to work is as simple as the three steps listed below.

Step 1: Implement the interface on the Page/UserControl class

To keep our code a bit organized, I create a RandomQuotesUserControl.ascx user control which would, surprisingly, contain the logic to show a random quote. This user control is then registered on the page which needs to show these quotes. In our sample application, I have registered this control on the default.aspx page itself. Alternatively, you could create a MasterPage, register this control on the MasterPage, and derive the other pages on the website from that MasterPage.

The inheritence of the RandomQuotesUserControl class would be like so:

C#
public partial class RandomQuoteUserControl 
        : System.Web.UI.UserControl
        , ICallbackEventHandler

Step 2: Writing the implementation for the interface methods

I start by implementing the RaiseCallbackEvent like so:

C#
public void RaiseCallbackEvent(string eventArgument)
{
    m_callbackResult = 
      "document.getElementById('randomQuote').innerHTML ='" + 
      this.getQuote() + "'";
}

In this method, I am setting a string to a local member which will contain the final output which needs to be placed on the UI when the GetCallbackResult method is called. This method has been implemented like so:

C#
public string GetCallbackResult()
{
    return m_callbackResult;
}

Step 3: Register the client callback reference

In this step, we will be registering the client callback JavaScripts with the Page so that our client side will understand what to do to get our code working. This is coded in the Page_Load event like so:

C#
protected void Page_Load(object sender, EventArgs e)
{
    // Creating the scripts which need to be called
    string clientScript = "function serverRequest(args, context){{ " + 
      Page.ClientScript.GetCallbackEventReference(this, "args", 
      "getResult", "context") + 
      "; }} function getResult(result, context){{ eval(result); 
    callServer(); }} function callServer(){
    setTimeout('serverRequest();', 3000);} callServer();";
    // Register the client script
    Page.ClientScript.RegisterClientScriptBlock(this.GetType(), 
    "RandomQuoteCallback", clientScript, true);
}

That's it. Compile and run the application to see the quotes changing every three seconds.

Conclusion

This is a very simple example of what can be done using the ICallbackEventHandler interface. You could have a lot more complex implementations like sorting a grid or showing tooltips, or do something really cutting edge. The options are limitless.

This works for me and hopefully it works for you too.

Happy programming!

License

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


Written By
IT.Wox, always
India India
Sunny is the founder of IT.Wox, always (www.itwox.com) - a web application design, development & consulting company

Comments and Discussions

 
GeneralMy vote of 5 Pin
Iman Abidi4-Dec-11 19:36
Iman Abidi4-Dec-11 19:36 
GeneralMy vote of 1 Pin
Syed J Hashmi9-Nov-09 6:44
Syed J Hashmi9-Nov-09 6:44 
GeneralRe: My vote of 1 Pin
ChristianProgrammer221-Apr-14 18:00
professionalChristianProgrammer221-Apr-14 18:00 
GeneralGr8 work Pin
Rakesh N Bhavsar16-Jul-09 21:10
Rakesh N Bhavsar16-Jul-09 21:10 
GeneralShort and clear Pin
Tomislav Markovski6-May-09 23:21
Tomislav Markovski6-May-09 23:21 
GeneralSimple and Nice Pin
IsmailLunat5-Sep-08 2:13
IsmailLunat5-Sep-08 2:13 
GeneralThis is nice Pin
sumedha_obey13-Aug-08 1:31
sumedha_obey13-Aug-08 1:31 
GeneralWell explained! Pin
Dinesh Mani22-Jun-08 19:07
Dinesh Mani22-Jun-08 19:07 
GeneralRe: Well explained! Pin
Sunny Chaganty23-Jun-08 4:51
Sunny Chaganty23-Jun-08 4:51 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.