Checking out the interface
In the Design
view, all that we have is shown in the following screenshot:

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:

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" runat="server"> <asp:Button ID="Button1" runat="server" Text="Update Labels" /><br /> <asp:Label ID="labelOne" runat="server" ></asp:Label><...