I have installed ASP.NET hotfix and I find that Startup Type of the ASP.NET Session State Service is set to Manual.Why?

Microsoft has acknowledged this as a Bug To set the StartUp Type as desired refer following steps In Control Panel, open Administrative Tools. Click Services. The Services window appears. Expand the Name column so that the complete name of each service appears. Note A Startup Type column displays the current Startup Type value for each service. Double-click the ASP.NET State Service service. The ASP.NET State Service Properties window appears. On the General tab, click one of the following options in the Startup type list: Manual Automatic Disabled Click Apply, and then click OK to save your settings. In the Services window, notice your changes to the Startup Type in the Startup Type column.

Are there resources online with tips on ASP to ASP.Net conversions?

Microsoft has designed The ASP to ASP.NET Migration Assistant help us convert ASP pages and applications to ASP.NET. It does not make the conversion process completely automatic, but it will speed up project by automating some of the steps required for migration. The following Code Migration Assistants are discussed in the link below. ASP to ASP.NET Migration Assistant PHP to ASP.NET Migration Assistant JSP to ASP.NET Migration Assistant Refer Migrating to ASP.Net Also refer: Microsoft’s ASP to ASP.NET Code Migration Assistant John Peterson’s article Microsoft’s ASP to ASP.NET Migration Assistant Paolo Cavone’s article From ASP to ASP.NET… Painlessly!

How can I add and remove an Html element dynamically using javascript?

Below is the javascript code which is used to add and remove div elements dynamically.Here the div tags are added in one base div tag container. <script> function AddHtmlElement() { var divElement = document.getElementById(’MYDIV’); var divNumber= document.getElementById(’hiddenValue’); var num = (document.getElementById(’hiddenValue’).value -1)+ 2; divNumber.value = num; var newdiv = document.createElement(’div’); var divIdName = ’MYDIV’+num; newdiv.setAttribute(’id’,divIdName); var divLoadedText=’Div ’+num+’ Is Added!’; divElement.appendChild(newdiv); newdiv.innerHTML =divLoadedText+’ ‘+'<a href=’#’ onclick=RemoveHtmlElement(’’+divIdName+’’)>Remove div ’’+divIdName+’’</a>’; } functionRemoveHtmlElement(divNum) { var divId = document.getElementById(’MYDIV’); var childId = document.getElementById(divNum); divId.removeChild(childId); } </script> <form id=’Form1′ > <input id=’hiddenValue’ type=’hidden’ value=’0′> <p> <a href=’#’ onclick=’AddHtmlElement()’>Add Html Elements</a> </p> <div id=’MYDIV’></div> </form>