Skate through code..
Thursday, 18 August 2016
SQL Server - Get DB Object Names, Count
›
SELECT sobjects.name FROM sysobjects sobjects WHERE sobjects.xtype = 'U' The above example lists all the tables in the database. ...
Thursday, 21 July 2016
Windows 2012 - Install IIS on Windows Server 2012 R2
›
Installing and configuring IIS on Windows 2012 R2 is well explained in the below article with step by step screenshots. Below is the link t...
Wednesday, 20 July 2016
XSL - If Else condition Choose When Otherwise
›
In XSL, there is no If - Else construct. Only If is present. If your requirement is stricly If - Else, instead use the Choose When Other...
Tuesday, 19 July 2016
XSL - Check if item is contained in a list
›
Use the below sample if you want to check if an item is contained in a list. This sample is using XSL and XPATH with XML input. In the bel...
Thursday, 14 July 2016
JavaScript - Replace Comma with New Line
›
Use JavaScript String functions " split " and " join ": var formattedString = yourString.split(",").join(...
2 comments:
Monday, 11 April 2016
SQL - Insert Multiple Rows in a Single Query
›
Below code snippets can be used to insert multiple rows in a Single SQL Query Statement. This will be faster than using multiple Insert sta...
Thursday, 17 March 2016
C# - String to Stream & Stream to String
›
Following code can be used to convert Stream to String and Stream to String using C#
‹
›
Home
View web version