Attention: We are retiring the ASP.NET Community Blogs. Learn more >

To postback or not to postback, that is the question

Implementing AJAX is definitely all the rage.  Everyone has heard of Microsoft's Atlas Framework, and most have seen Ajax.net Professional, but have you checked out OutPost yet?

 It is a simple way to AJAX-enable both your 1.1 and 2.0 applications.  Just add the following:

private void Page_Load(object sender, System.EventArgs e)
{
    OutPost.Ajax.Enable();
}

In other words..."That was easy!"

 

No Comments