April 2007 Entries
Look into the following script , i have looked into it for hours , but didnt able to figure out what could possibly go wrong. var div = document.createElement("div"); div.id = "myDiv"; div.innerHTML = "Hello world"; div.className = "original"; //alert(div); var element =document.getElementById("t... element.id = "Location_Box_Relative"; var table = document.createElement("tab... table.className = "GeoTable"; table.setAttribute("border", "0"); table.setAttribute("hasLayo... "1"); var...
Powershell, is a great tool for handy scripting. It is often needed that you need to write sql scripts in isolated files. The is good in terms of finding errors in script, and focusing on one part while developing part of the sytem.But , as the number of script files grows big , the deployment issue becomes a headache for the release manager to handle your scripts. I used to think that the best solution, for merging files, is to use dos copy /xcopy commend, but this often gets screwed up for really...
This is a common error in atlas when you put a atlas updateProgress inside a panel with panel.visible = false. Toggling panel is a common task when you create a wizard like application. Therefore, in order to make it happen, all is needed is to put a dummy reference to the updateprogress control's clientId. Which looks something like... <asp:Panel id="dummyControlPanel"> <div id=ctl00_SomePage_controlName" /> </asp:Panel/> Now, with the script manager's partial rendering set to...