Posts Tagged ASP.NET AJAX
Enable ASP.NET AJAX in Your SharePoint 2007 Farm
Posted by Michael Bowersox in SharePoint on March 4, 2010
SharePoint 2007 does not enable ASP.NET AJAX by default. Although the process to enable ASP.NET AJAX on a SharePoint 2007 web application is rather straightforward, it can be time consuming and error prone due to the amount of web.config entries that need to be made. So, a while back a friend and I created a [...]
ASP.NET AJAX Page Methods Performance Analysis
Posted by Michael Bowersox in ASP.NET, Development on March 29, 2009
As we have previously seen, ASP.NET AJAX Page Methods are a great way to return the minimum amount of data required in an AJAX request. But the question remains, just how much bandwidth can you save by using Page Methods rather than UpdatePanels for AJAX operations. To illustrate this, we are going to create a [...]
ASP.NET AJAX Page Methods
Posted by Michael Bowersox in ASP.NET, Development on March 21, 2009
ASP.NET contains some controls which makes adding AJAX features to your application rather easy. For example, Microsoft has provided us with the UpdatePanel. The UpdatePanel control allows you to partially render individual portions of your pages without initiating a full postback. The UpdatePanel control is great in many ways, but seems to be quite a [...]