Welcome to episode three of our series on the “Magic Menu” web app – the C# code!
Please check out part two before we begin if you like.
Default.aspx.cs
We start out by importing a standard set of namespaces, which generally hold tons of standard .NET classes we may want to use within the rest of our code.
using System; using System.Collections.Generic; using System.Linq; using System.Web; using System.Web.UI; using System.Web.UI.WebControls; using System.Drawing;