Monday, February 6, 2012

Traversing DOM using JavaScript

November 22, 2009 by · 1 Comment 

The HTML DOM defines a standard way for accessing and manipulating HTML documents. The DOM presents an HTML document as a tree-structure expressed as an XML document. DOM is a language independent API, as it can be used in Java, .NET, JavaScript and many more. I will use it with JavaScript to for my sample [...]

SqlBulkCopy – Bulk Insertion in SQL Server from .NET

November 5, 2009 by · Leave a Comment 

Many a times there come a scenario when you have to insert large number of records in sql server. There are number of ways to implement this scenario: through looping techniques to call insert statements for one record at a time. Serialize the data in CSV or XML format and send them as a parameter [...]