Oct1

IIS 6.0 and Flash streaming (FLV)

Categories: Miscellaneous, Errors
We recently acquired an app that streams flash - but it was not working on our web servers (Winows 2003, Standard).  It was pretty aggravating to get up and running (*Opens arms for Silverlight*). The site has .swf files that stream a flash video...
 
Sep20

Check to see if a string is empty

Categories: ASP.NET C#
There are several ways to check a string to see if it’s empty.  However, you should try to always use the following method.  It’s faster, and uses less resources.  This may seem like a minimal piece of code - but if you were checking strings through...
 
Sep12

Add a Column To An Existing Table

Categories: SQL Server
If you need to add a column to an existing table with a default value:   ALTER TABLE YourTableName ADD YourColumnName varchar(50) DEFAULT ‘your default value’ WITH VALUES...