ASP.NET AJAX Repeater : Kazi Manzur Rashid

Demonstrates how to how to develop a Data Bound Templated Control with ASP.NET AJAX. In this article, I will show you how to create a Repeater Control with ASP.NET AJAX. The Control mimics on the client side the original ASP.NET Repeater Control. Why do we need another Repeater control when there is...

Dynamic AJAX Modal Popup control demonstration : Kelum W. Ganegoda

This article demonstrates how to dynamically load a modal pop-up AJAX control. Asynchronous JavaScript and XML (AJAX) -- Jesse James Garrett was the creator of the term AJAX -- enables a rich user interface experience for web applications. I'm not going to tell you the plus and minus points about AJAX...

Display an animated Gif during a long-running ASP.NET page call : Peter A Bromberg

Shows a very easy-to-implement, cross-browser technique for displaying an animated progress gif while a long running method is going in your ASP.NET Page. Technique also works with other scripting platforms and languages. With all the new "AJAX" (Remote Scripting) and clientcallback methods available...

Introduction to the PopupControl Extender : Brian Mains

The PopupControl extender is a way to render a server control popup to the user, so that the user can perform some action (say click on a textbox), the user selects a value in a control that dynamically appears, and that value is posted back to the originating server control. As an example, this can...

Client-side programming with Atlas : Tony Patton

Microsoft has developed its own approach to AJAX development called Atlas, which promises browser ubiquity as well as tight, albeit optional, ASP.NET integration. In this column, we survey the Atlas architecture to get a better understanding of how you may use it in your development work. What is Atlas...

How to Create an HTML Editor for ASP.NET AJAX : Eric Williams (winthusiasm.com)

This article discusses how to create an HTML Editor server control for use within an ASP.NET AJAX 1.0 environment. Most blog, forum and Wiki applications use an HTML editor as the primary authoring tool for site content. With this type of control, an online user can create and edit an HTML document....

Fast Streaming AJAX Proxy - Continuously Push Data as Downloaded : Omar AL Zabir

Solve the common problem of double-downloading of data when browser wants to download content from external domain by making AJAX calls to a server side proxy. This proxy solves the delay in transmitting data from external domain by continuously pushing data to browser as it downloads on the server....

How to open popup windows in IE/Firefox and return values using ASP.NET and Javascript : Suprotim Agarwal

With the forums flooded with questions of opening a popup window, passing values to the popup window and then return values back to the parent page using both Internet Explorer and Firefox, I decided to take a plunge into the subject and experiment with an easy implementation. This article explains how...

Building AJAX Enabled File Uploading System with Progress Bar Using ASP.NET 2.0 : Jesudas Chinnathampi (Das)

This article examines how to upload a file to a remote web server using ASP.NET 2.0 and AJAX. The author also discusses how to display a "Please wait ..." message while the upload is happening. Uploading files using ASP.NET Framework 1.0 / 2.0 / 3.0 is pretty easy. Without much error handling, all we...

Real-Time Progress Bar With ASP.NET AJAX : Timothy Khouri

Due to the disconnected nature of the web, developers have often wondered how to display certain metrics such as a real-time progress bar. This article will show you how to easily build a real progress bar that actually reports progress of a process running on the server using ASP.NET AJAX. Our Scenario...