|
|
ASP.NET Tutorial 1: Intro to Visual Studio/Visual Web Developer
by Matt on 2009/11/08 at 9:54 am
This tutorial covers the basics of working on websites in Visual Studio 2008/2010 or Visual Web Developer 2008 Express. Topics covered will include interface, terminology, and configuration. More advanced tips will be included in future programming-specific tutorials. Continue Reading this Article >>
• Posted under Tutorials and tagged with @Complexity: Beginner, ASP.NET, C#, Visual Studio, Visual Web Developer
• Comments (0)
ASP.NET Tutorial 0: Getting ready for ASP.NET development
by Matt on 2009/10/27 at 12:48 pm
So you want to get into ASP.NET web development, but don’t know what you need to get started. It’s okay, I’m here to help! This in-depth article contains detailed instructions for setting up your Windows Vista, Windows 7, or Windows Server 2008 computer for full-on ASP.NET web development in C# including installation of IIS, Visual Web Developer Express, and SQL Server Express. This does not cover any actual use of those tools (those posts will come later), but only discussed what you need and how to install everything. Continue Reading this Article >>
• Posted under Tutorials and tagged with @Complexity: Beginner, ASP.NET, C#, IIS, Visual Studio, Visual Web Developer
• Comments (1)
(C#) Null Coalescing Operator (setting default variable values)
by Matt on 2009/10/22 at 7:00 am
The purpose of the Null Coalescing Operator ( ?? ) is to set a default value for a variable in the event the first value you are attempting to assign from is null. Hence, the logic behind the null coalescing operator is this: If this variable is null, use this other value instead. This is handy is because what would otherwise be a multiple-line if/else block is now a single, concise line. Continue Reading this Article >>PHP Tutorial 0: Getting ready for PHP development
by Matt on 2009/10/19 at 4:20 pm
This in-depth article contains detailed instructions for setting up your Windows Vista, Windows 7, or Windows Server 2008 computer for full-on, balls-out PHP web development – including installation and configuration of IIS, PHP, MySQL, SQLyog, and NetBeans. Continue Reading this Article >> |