Posts Tagged ASP.NET
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 new [...]
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 [...]
Intro to the ASP.NET Charting Control
Posted by Michael Bowersox in ASP.NET, Development on March 3, 2009
A few months back Microsoft released a free charting control for .NET. You can download the charting control and the plugin for VS2008 at the following links:
Charting Control: http://www.microsoft.com/downloads/details.aspx?FamilyID=130f7986-bf49-4fe5-9ca8-910ae6ea442c&DisplayLang=en
VS2008 Plugin: http://www.microsoft.com/downloads/details.aspx?familyid=1D69CE13-E1E5-4315-825C-F14D33A303E9&displaylang=en
Once these two packages are installed, we can go ahead and start creating our first charting project. For this project, we will create a pie [...]