Visual Studio NAnt AddIn Get link Facebook X Pinterest Email Other Apps madeinstein , July 17, 2009 http://www.netlogics.ch/en/nantaddin.html It works with both VS2005 and VS2008 Read more
How to filter sp_who2 information Get link Facebook X Pinterest Email Other Apps madeinstein , July 10, 2009 DECLARE @sp_who2 TABLE ( SPID INT , Status VARCHAR (255) NULL , Login SYSNAME NULL , HostName SYSNAME NULL , BlkBy SYSNAME NULL , DBName SYSNAME NULL , Command VARCHAR (255) NULL , CPUTime INT NULL , DiskIO INT NULL , LastBatch VARCHAR (255) NULL , ProgramName VARCHAR (255) NULL , SPID2 INT , REQUESTID INT ) INSERT @sp_who2 EXEC sp_who2 SELECT * FROM @sp_who2 WHERE Status > 'BACKGROUND' Read more
How to add website to search engines Get link Facebook X Pinterest Email Other Apps madeinstein , July 08, 2009 Submit to Google Submit to Microsoft BING Submit to Yahoo (requires registration) Read more
Favicon Editor Get link Facebook X Pinterest Email Other Apps madeinstein , July 07, 2009 The web editor that provides the facilities to draw favicon or convert GIF, JPEG or PNG to favicon. Favicon Editor Read more
Open Web Tools Directory Get link Facebook X Pinterest Email Other Apps madeinstein , July 07, 2009 Directory of various tools for Web Developers Open Web Tools Directory Read more
C# How to send email Get link Facebook X Pinterest Email Other Apps madeinstein , July 07, 2009 using System.Net.Mail; public class Email { public static void Send( string smtpHost, string from, string to, string cc, string subject, string body, MailPriority priority, bool isBodyHTML) { SmtpClient client = new SmtpClient(smtpHost); client.UseDefaultCredentials = true ; MailMessage message = new MailMessage(); message.From = new MailAddress(from); message.Subject = subject; message.Body = body; message.Priority = priority; message.IsBodyHtml = isBodyHTML; string [] addressesTo = to.Split( new char [] { ';' }, StringSplitOptions.RemoveEmptyEntries); foreach ( string address in addressesTo) { message.To.Add( new MailAddress(address)); } if (cc != null ) { string [] addressesCc = cc.Split( new char [] { ';' }, StringSplitOptions.RemoveEmptyEntries); foreach ( Read more