-
HTML, CSS, Javascript, and jQuery: Putting them all together (Part 1)
HTML describes how the web page will look like. Below is an example of an HTML page (created using Visual Studio 2012 by the way). You have the <!DOCTYPE>, <html>, <head>, and <body> tags as always. <!DOCTYPE html> <html xmlns=“http://www.w3.org/1999/xhtml”> <head> <title>Example HTML Page&l... Read More
-
C#: How many versions of C# do we have right now?
The latest version of C# that came with Visual Studio 2012 and .NET Framework 4.5 is 5.0. For those who are still working on .NET Framework 2.0, the version of C# you are using is 2.0. Between these, you have 3.0 and 4.0. So naturally you might ask what are the differences between these versions? Don’t fear, help is here ;). Fortunately, th... Read More
-
SQL Server: Common Table Expression (CTE), ROW_NUMBER(), RANK(), Derived Table, OPENXML()
Common Table Expression (CTE) is easy to use since you don’t have to create a table or even drop them after use and you can reference it multiple times and anywhere in the query. You would use it like this in it’s simplest form: WITH Table2 AS ( SELECT * FROM Table1 ) SELECT * FROM Table2 ... Read More
-
.NET Framework: From 2.0 to 3.0, to 3.5, to 4.0, and finally to 4.5, what’s the difference?
I thought it would be nice to know what the differences between these .NET Framework versions are. I will not be discussing here the differences in versions of ASP.NET as this will be a topic on its own under the ASP.NET section. Same with C#, it will be a topic on its own under the C# section. Plus I won’t be discussing all the differences h... Read More
-
HTML: DOCTYPE, Elements, Attributes, Paragraphs, Empty HTML Elements, Formatting, Link Element, Head Element
So I just went through some HTML tutorials at W3Schools and I will just jot down some notes to remind me by. <!DOCTYPE html> is the first line you see in a HTML page. HTML elements are those inside the start/opening tag (i.e. <html>) and end/closing tag (i.e. </html>). Attributes are found inside HTML elements that come... Read More