New Application Templates for Windows SharePoint Services 3.0

There is a new set of application templates for WSS 3.0 available from Microsoft with more on the way. Application templates are out-of-the-box custom scenarios tailored to address the needs and requirements of specific business processes or sets of tasks in organizations of any size. They can be applied to a task, such as managing…

Getting Set Up for AJAX-enabled Web Services

Follow these steps to prepare your machine for development or production Web Services applications that take advantage of AJAX. I had to cull these steps from multiple blogs, MSDN information, etc. Development or Production 1. If not already installed, install .NET Framework 2.0http://www.microsoft.com/downloads/details.aspx?familyid=0856eacb-4362-4b0d-8edd-aab15c5e04f5&displaylang=en2. Install ASP.NET 2.0 AJAX Extensions 1.0http://ajax.asp.net/downloads/default.aspx?tabid=473. Install ASP.NET 2.0 AJAX Futures January…

Using the innerHTML Property

When you use the innerHTML property, you need to be careful.  Take a look at this simplified Javascript sample code:       var new_legend = document.createElement("div");    new_legend.innerHTML = "<table>";    new_legend.innerHTML = new_legend.innerHTML + "<tr><td colspan=2 align=center>Legend</td></tr>";       //Add legend entries    for (var i = 0; i < legend_count; i++)     {         new_legend.innerHTML = new_legend.innerHTML + "<tr><td>something1</td><td>csomething…