1 2 3 4
public string CleanHtml(object Html) { var s = Html.ToString(); var b = new StringBuilder(); ...
1 2 3 4
public static class DirectoryInfoExtensions { public static void CopyTo(this String Source, String Destination, Boolean Overwrite) ...
C# DirectoryInfo.CopyTo
Because the .NET Framework ...
C# On Drop all Indexes in SQL Server
by GateKiller,
October 07, 2008 11:55
Rik,
I knew sooner or late...
1 2 3
Declare @Index varchar(128) ...
C# Drop all Indexes in SQL Server
The below is some code I re...
C# On Backup All MS SQL Server Da...
by GateKiller,
September 22, 2008 11:59
@Moodshield: Love it! It's ...
1 2 3
this.getHttpRequest(identifier).onreadystatechange = function() { ajaxChat.handleResponse(identifier); };
1 2 3
Declare @Name varchar(128) Declare cCursor Cursor LOCAL FORWARD_ONLY FAST_FORWARD READ_ONLY For Select Name From SysObjects Where XType = 'V' ...
1 2 3
Declare @Name varchar(128) Declare @Cursor Cursor ...
C# Cache SQL Server Views
Question: Is there anyway t...
1 2 3 4
// ***** Encryption and Decryption ***** // byte[] Key(string sText) { ...
C# Encryption and Decryption
This is my first attempt at...

This is my own attempt at w...