ColdFusion, AJAX and web...
<script>
var currentRow = 0;
var threadID = null;
function populateTable()
{
var oTable = document.getElementById("simpleTable");
threadID = window.setInterval( function()
{
drawRow(oTable);
}
,
5
);
}
function drawRow(oTable)
{
// Create a new TR element
oTR = oTable.insertRow();
oTD = oTR.insertCell();
oTD.innerHTML = currentRow;
oTD = oTR.insertCell();
oTD.innerHTML = "Last name " + currentRow;
oTD = oTR.insertCell();
oTD.innerHTML = "First name " + currentRow
oTD = oTR.insertCell();
oTD.innerHTML = "City " + currentRow;
currentRow++;
if (currentRow == 200)
{
window.clearInterval(threadID);
currentRow = 0;
}
}
</script>
....
<a href="javascript:populateTable()">Populate the table</a>
<br/><br/>
<table id="simpleTable">
<caption>Simple Table</caption>
<thead>
<tr>
<td>ID</td>
<td>Last Name</td>
<td>First Name</td>
<td>City</td>
</tr>
</thead>
</table>
ASP.NET “Atlas” is a package of new Web development technologies that integrates an extensive set of client script libraries with the rich, server-based development platform of ASP.NET 2.0. “Atlas” enables you to develop Web applications that can update data on a Web page by making direct calls to a Web server — without needing to round trip the page. With “Atlas”, you can take advantage of the best of ASP.NET and server-side code while doing much of the work in the browser, enabling richer user experiences.
Well, I just got my account now, and it's pretty cool. It allows you to track in detail the following areas: