I found this fantastic tool developed by Microsoft that lets you manipulate HTML right in the browser. You can change CSS, Table sizes, allignements, disable JavaScript…You name it!
Download here
Archive for January, 2007
Best Tool For HTML Developers: IEDevToolBar
Posted in HTML, Tools on January 9, 2007 | Leave a Comment »
Disable Compilation Error In C#
Posted in .Net, C# on January 9, 2007 | Leave a Comment »
To disable a compilation error in C#, you only need to put this code just before the method declaration:
#pragma warning disable xxxx
Where xxxx is the error code from compilation likeĀ 0429 for example.