
上QQ阅读APP看书,第一时间看更新
Adding a Show Results button to the HTML
Open up a project and, inside the <html>, put in a single button that says Show Results. For this, go to the Toolbox and grab a Button control. Drag and drop it below the line beginning with <form id=.... You can delete the <div> lines, as you don't need them. Be sure to insert a <br> tag at the end of the Button line.
<asp:Button ID="Button1" runat="server" Text="Show Results" /><br />
Next, we will display some results to the user. To do this, go to the Design view, and double-click on the Show Results button. This takes us into Default.aspx.cs. Delete the Page_Load block. The relevant portion of the starting code for this project should look like Figure 8.3.1:

Figure 8.3.1: The starting code section for this project