Creating the User Interface
Now that we've completed the design requirements phase and have decided what features our financial calculator will provide, as well as how the interface will appear to the user, it's time to actually start creating our ASP.NET Web page.
The first task is to create the user interface (or UI), which is considered the HTML portion of our ASP.NET Web page. To construct this UI, we'll add a TextBox Web control for each of the three inputs, as well as a Button Web control that, when clicked, will perform the necessary computations.
NOTE
After creating the user interface, we will turn our attention to writing the needed source code to perform the financial computations.
To start creating our user interface, launch the Web Matrix Project and create a new ASP.NET Web page named FinancialCalculator.aspx, making certain to use the Visual Basic .NET Language option (the default). Before we add any content to the HTML portion of our ASP.NET Web page, first take a moment to turn on glyphs, which are markers in the designer that indicate the location of HTML controls and Web controls. To turn on glyphs, go to the View menu and choose the Glyphs option.
With glyphs activated, you should see, in your Design tab, two yellow tags that mark the beginning and end of your form HTML control. Figure 3.3 contains a screenshot of the Web Matrix Project with glyphs enabled.
Figure 3.3 Turning on glyphs uses markers to display invisible HTML controls and Web controls.
NOTE
If you do not see a Design tab for your ASP.NET Web page and instead see only Source and Preview tabs, you have the Web Matrix Project in Preview Mode and need to change to Design Mode. Refer back to the "Editing the HTML Content by Using the HTML Tab" section from Hour 2, "Understanding the ASP.NET Programming Model," for information on switching back to Design Mode.
Recall from our discussion in the previous hour that the Web Matrix Project automatically inserts a form HTML control in the HTML portion of your ASP.NET Web pages. The <form> tag is inserted in an HTML control because it has the runat="server" attribute, as can be seen by clicking the HTML tab (see Figure 3.4).
Figure 3.4 The HTML portion of the ASP.NET Web page contains a form HTML control.
NOTE
The form HTML control is commonly referred to as a Web form or server-side form. The remainder of this book will refer to form HTML controls as either Web forms or server-side forms.
When creating an ASP.NET Web page that accepts user inputsuch as our financial calculator, which accepts three inputs from the userit is required that the Web controls for user input (the TextBoxes, DropDownLists, CheckBoxes, and so on) be placed within a Web form. We will discuss why this needs to be done in Hour 9, "Web Form Basics."
TIP
Because our user input Web controls need to be within the Web form, it is important that we turn on glyphs so that we can see the Web form's start and finish. Then we can be sure that the controls we drop onto the designer from the Toolbox actually end up between the Web form's start and end tags, as opposed to before or after the Web form.
Adding the Three TextBox Web Controls
Let's start by adding the TextBox Web controls for our user's three inputs. First make sure that you are in the Design tab. Next place your mouse cursor between the Web form glyphs and click the left mouse button so that the designer receives focus and there is a flashing cursor between the Web form glyphs. Create some space between the Web form's start and end tags by hitting enter a few times. You should see something similar to Figure 3.5.
Figure 3.5 Hit Enter to create some space between the Web form start and end tags.
Before we drag a TextBox Web control to the designer, let's first create the title for the textbox we're going to add. Because the first input is the amount of the mortgage, start by typing in this title: Mortgage Amount:.
Next we want to add a TextBox Web control after this title. To accomplish this, make sure that the Web Controls tab from the Toolbox is selected, and then drag a TextBox control from the Toolbox and drop it into the designer after the "Mortgage Amount:" title. Take a moment to make sure your screen looks similar to the screenshot shown in Figure 3.6.
Figure 3.6 At this point you should have a title and a single textbox, both inside the Web form tags.
CAUTION
When dragging and dropping the TextBox Web control from the Toolbox, it is very important that the Web Control tab be selected so that you are indeed dragging and dropping TextBox Web controls. If the HTML Elements tab is selected on the Toolbox, you'll be placing standard HTML textboxes (textboxes without the runat="server" attribute present).
If you do not use TextBox Web controls, you will not be able to reference the values that the user entered in the TextBoxes in the source code portion of the ASP.NET Web page. Therefore, be certain that when dragging and dropping TextBoxes onto the designer for this exercise, you are dragging TextBox Web controls, not HTML textboxes.
Currently, the TextBox Web control we just added has its ID property set to TextBox1. Because we will later need to refer to this ID in order to determine the value of the beginning retirement balance entered by the user, let's choose an ID value that is representative of the data found within the TextBox. Specifically, change the ID property to loanAmount.
TIP
To change a Web control's ID property, click the Web control in the designer, which will load the Web control's properties in the Properties window in the lower right-hand corner. Scroll to the top of the Properties pane until you see the ID property. This is the property value that you should change. Note that in the list of properties in the Properties pane, the ID property is denoted as (ID).
Now let's add the second textbox, the mortgage's interest rate. Add it just as we did the previous TextBox Web control by first creating a title for the TextBox. Type in the title Annual Interest Rate:. Next drag and drop a TextBox Web control after this title and change the TextBox's ID property to rate.
Finally, add the third textbox, the duration of the mortgage. Start by adding the title Mortgage Length:, and then drag and drop a TextBox Web control after the title. Set this TextBox's ID to mortgageLength.
TIP
You might want to type in some text after each TextBox Web control to indicate the units that should be entered into the textbox. For example, after the "Annual Interest Rate" textbox, you might want to add a percent sign so that the user knows to enter this value as a percentage. Similarly, you might want to enter the word "years" after the "Mortgage Length" TextBox.
Figure 3.7 contains a screenshot of the Design tab after all three input TextBox Web controls have been added.
TIP
The screenshot in Figure 3.7 shows the TextBox Web control titles in the standard font. Feel free to change the font or the aesthetics of the HTML portion however you see fit. Just be sure to have three TextBox Web controls inside of the Web form.
Figure 3.7 A screenshot of the Design tab, shown after all three TextBox Web controls have been added.
Adding the Compute Monthly Cost Button
After the user has entered inputs into the three TextBox Web controls, we want to be able to take that information and perform our financial calculation. Realize, though, that when the ASP.NET engine executed the ASP.NET Web page, it converted the TextBox Web controls into HTML <input> tags.
As we'll discuss in much greater detail in the next hour, "Dissecting Our First ASP.NET Web Page," when the users visit the FinancialCalculator.aspx ASP.NET Web page via their browsers, they are receiving HTML that contains a <form> tag and, within it, three <input> textbox tags. This HTML markup, when rendered by a browser, displays three textboxes, as shown in Figure 3.7. In order for the calculation to take place, the inputs entered by the user must be submitted back to our ASP.NET Web page (FinancialCalculator.aspx). Once our ASP.NET Web page receives these user-entered values, it can perform the financial computation and return the results.
In order for an HTML form to be submitted, the user needs a button that, when clicked, causes the form to be submitted. We can add such a button by adding a Button Web control to our ASP.NET Web page.
NOTE
We will discuss the specifics involved with collecting and computing user input in Hour 9, "Web Form Basics."
To add a Button Web control, first ensure that the Web Controls tab in the Toolbox is selected. Then drag the Button Web control from the Toolbox onto the designer, dropping it after the last input title and textbox.
When dropping a Button Web control onto the designer, the button's caption reads "Button." To change this, click the button and then in the Properties pane change the Text property from Button to Compute Monthly Cost. This will change the caption on your button to "Compute Monthly Cost." Also, while in the Properties pane, change the button's ID propertylisted in the property pane as (ID)from the default Button1 to performCalc.
Take a moment to make sure that your screen looks similar to the screenshot in Figure 3.8.
Figure 3.8 A Button Web control has been added.
Creating a Label Web Control for the Output
The final piece we need to add to our user interface is a Label Web control that will to display the output of our financial calculation. Because the Label Web control will display the output (the amount of money the mortgage costs per month), the Web page's final result will appear wherever you place the Web control. Therefore, if you want the output to appear at the bottom of your ASP.NET Web page, simply drag and drop a Label Web control after the existing content in the designer. If you want the output to appear at the top of the Web page, place it before the existing content in the designer.
To add the Label Web control, drag and drop it from the Toolbox and onto the designer. Once you have added the Label Web control, you will see that it displays the message "Label." The Label Web control displays the value of its Text property, which is configurable via the Properties pane. Figure 3.9 is a screenshot of the designer with the Label Web control added.
Figure 3.9 A Label Web control has been added to the ASP.NET Web page.
Because we don't want this label to display any content until the user has entered their three inputs and the calculation has been performed, clear out the Label's Text property. To clear out a property value for the Label Web control, first click the Label Web control so that its properties are loaded in the Properties pane. Then, in the Properties pane, locate the Text property and erase the Text property value by clicking the Text property's value and hitting backspace until all of the characters have been erased.
Once you clear out the Label's Text property, the designer will show the Label Web control as its ID property, enclosed by brackets. Currently, the Label Web control's ID property is Label1, meaning that in the designer you should see the Label Web control displayed as: [Label1]. Go ahead and change the ID property of the Label Web control from Label1 to results, which should change the label's display in the designer from [Label1] to [results]. Figure 3.10 shows a screenshot of the designer after the Label Web control's property has been changed to results.
Figure 3.10 The Label Web control's ID has been changed to results.
Completing the User Interface
At this point we have added the vital pieces of the user interface. This was accomplished using the Web Matrix Project's WYSIWYG editor in a fraction of the time it would have taken to enter the HTML markup and Web control syntax manually.
NOTE
To fully appreciate the amount of HTML markup the Web Matrix Project generated for us automatically, click the HTML tab.
If you want to add additional user interface elements at this time, perhaps a bold, centered title at the top of the Web page or a brief set of instructions for the user, feel free to do so.
Now that we have created the HTML portion of the ASP.NET Web page, we are ready to create the source code portion in the next section.
TIP
HTML markup and Web controls not used for user input may appear either within the Web form tags or outside of these tags. The only things that must be placed within the Web form tags are the Web controls that collect user input (the TextBoxes and Button).