Thursday, December 09, 2010

You just created a code project but it will not compile and get the error message: "does not contain a static 'main' method. Change the project property setting of "output type" to "Class Library". Recompile to test.....

Wednesday, May 12, 2010

T-SQL search table columns for a particular field:

select sysobjects.name
from syscolumns
left join sysobjects on sysobjects.id = syscolumns.id
where syscolumns.name like 'Field_Name'
order by 1

Friday, February 05, 2010

If you happen to get a "http 403 error" while trying to debug a .net web service, be sure to set the .asmx file to "set as start page". If you get the error you may spend a great deal of time trying to find the solution as I did with no luck.