Monday, June 21, 2010

Trim text using javascript

String.prototype.trim = function() { return this.replace(/^\s+|\s+$/g, ""); ...
Read More

Add/delete rows in HTML Table at run time using javascript

< script language="javascript" type="text/javascript" > function addrow(){ var tbody = document.getElementById("< %= tableName.ClientID % >").getElementsByTagName("TBODY")[0]; var row = document.createElement("TR") var td1 = document.createElement("TD") var td2 = document.createElement("TD") var td3 = document.createElement("TD")td1.appendChild(document.createTextNode("value"));td2.appendChild(document.createTextNode("value));//to...
Read More

Tuesday, June 1, 2010

Taking a SQL Server Database Off-Line/ON-Line

Sometimes you will want to remove all access to a database for a period of time without detaching the database or deleting it. One option to achieve this is to take the database off-line. You can do this using standard SQL Server tools or Transact-SQL.Using SQL Server ToolsThe easiest way to take a SQL Server database off-line is using the graphical user interface tools provided. If you are using either SQL Server Management...
Read More
Powered By Blogger · Designed By Seo Blogger Templates