Hi 99kimboslice,
You need to inherit the Default page.
Change your HTML code to below code.
HTML
<%@ Page Language="C#" AutoEventWireup="true" CodeFile="Default.aspx.cs" Inherits="_Default" %>
<!DOCTYPE html>
<html xmlns="http://www.w3.org/1999/xhtml">
<head runat="server">
<title></title>
</head>
<body>
<form id="form1" runat="server">
<p>
Click the button to download a file
</p>
<asp:Button ID="Button1" runat="server" OnClick="Button1_Click" Text="Download" />
<br />
<br />
<asp:Label ID="Label1" runat="server"></asp:Label>
</form>
</body>
</html>