[How Do I:] Implement the AJAX After Processing Pattern?

Please install Silverlight or click download to watch video locally.

The ASP.NET AJAX framework allows your server-side code to hook in and respond to various client-side events. In this video we learn how to implement the After Processing Pattern, which allows server-side code to execute wrap-up logic once the user has finished with the Web page.

Presented by Joe Stagner

Duration: 5 minutes, 40 seconds

Date: 21 June 2007

Watch    Video   |   Download    Video   |   VB Code    C# Code

Video downloads: WMV  |  Zune  |  iPod  |  PSP  |  MPEG-4  |  3GP

Audio downloads: AAC  |  WMA  |  MPEG-4  |  MPEG-3  |  MPEG-2

Comments : 7

Leave a Comment

cv_vikram : On August 07, 2008 8:06 AM said:

Good tutorial..thanks

stapes : On February 19, 2009 5:30 AM said:

The downloaded C# code does not work. It does not even build. If you are going to give sample code, then at least make sure it works.

zhang_fei : On April 30, 2009 12:11 AM said:

thank you

sobinscott : On June 23, 2009 2:59 AM said:

What the HELL! your sample C# code does not work.Why do you put such sample code here?Put it in waste bin!!!

faltintas : On July 30, 2009 8:20 AM said:

It's working with ie 7 but not working with firefox.

Is there any solution to solve this problem ?

prolingua.geo : On August 25, 2009 1:11 PM said:

Hi there,

the javascript code :

document.sw.disp1.value=Display(cmin1,csec1);

doesn't work for me, so I changed into

document.getElementById("disp1").value = Display(cmin1, csec1);

and it works.

NewDeveloper1 : On October 06, 2009 2:44 PM said:

The only problem with the C# is this line:

<input type="text" name="disp1" size="9" />

change it to:

<input type="text" id="disp1" size="9" /> (change "name" to "id")

it works fine.

Thanks.

Leave a Comment

You must be logged in to leave a comment. Click here to log in.

Microsoft Communities