In the Design view, all that we have is shown in the following screenshot:
![](https://static.packt-cdn.com/products/9781788296540/graphics/assets/c7701cc7-82c1-49a9-8ca0-69087fb5d029.png)
Figure 6.20.2: A simple interface for this project in Design view
Again, if you want, you can also get rid of where it says Text=Label since nothing shows up by default when you launch the page. Then, in the Design view, it will look like the following screenshot:
![](https://static.packt-cdn.com/products/9781788296540/graphics/assets/6adb65ff-9cc0-484e-9e85-3de7f6485cec.png)
Figure 6.20.3: The interface in Design view when you delete Text=Label"
Your Default.aspx file should look like the one shown in the following code block:
<%@ 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>Our First Page</title>
</head>
<body>
<form id="form1"...