In this lab, we will demonstrate how to create an ASP.NET Web application having a single form with five text boxes and a Submit button. We will use the form to send information to a second form where data from the first form will be displayed.
| | |
|
| Deliverables |
All files are located in the subdirectory of the website. The website should function as follows: When you run the website, you should be able to enter data in the frmPersonnel form and have it displayed in the frmPersonnelVerified form. Once you have verified it works, save your website, zip up all files, and submit in the Dropbox.
| | L A B S T E P S | |
| STEP 1: frmPersonnel (10 points) |
1. Open the PayrollSystem website from Lab 1.
2. Create a new form called frmPersonnel. To do this, pull down the Website menu, select "Add New Item," then type frmPersonnel.aspx for the name.
| Click on image to enlarge. [D] | |
|
3. Go to the Design mode of the form by clicking the Design tab (as opposed to the Source tab).
4. Copy/paste this text for the CoolBiz Productions, Inc. logo onto the form at the very top. Set the alignment to Center by highlighting the text, then clicking Format, Justify, Center.
5. From the ToolBox, drag-and-drop a Panel control underneath the logo text.
6. Click the A/Z button in the Properties dialog so that all the properties are sorted alphabetically.
7. Change the Height property of the Panel to 250px and the Width to 300px. To do this, select the Panel, then go to the Properties pane (usually in the lower right corner of the Visual Studio.NET Design view; if you don't see it, click View Properties Window OR press the F4 key). Scroll down the list, then type the value in for each Property.
8. Change the Panel's HorizontalAlign property to Left.
9. Save your work!!!
10. From the ToolBox, drag-and-drop five Labels and five TextBoxes onto the Panel. To make each Label/TextBox pair appear on a separate line, put the cursor after each TextBox then press the [ENTER] key (much like you would with a word processing program).
11. From the ToolBox, drag-and-drop two Buttons onto the Panel below the last Label and TextBox.
12. Save your work!!!
| Click on image to enlarge. [D] | |
|
13. Test your Web page. Press F5, or click the Start Debugging (Citrix users, press "Start Without Debugging") button on the toolbar, or pull down the Debug menu and select Start Debugging.
| Click on image to enlarge. [D] | |
|
NOTE: To execute the application, you have these options:
A. If you are using Citrix, press CTRL-F5 to Start Without Debugging. You will not be deducted points for this part.
B. If you are using a standalone version, press F5 to Start with Debugging, or you can press CTRL-F5 to Start Without Debugging
B. If you are using a standalone version, press F5 to Start with Debugging, or you can press CTRL-F5 to Start Without Debugging
14. Rename the Label's properties as defined below. You can do this by selecting each Label, scrolling to the property, then typing in the value.
| Property | Value |
| Label1- Text | First Name: |
| Label2- Text | Last Name: |
| Label3- Text | Pay Rate: |
| Label4- Text | Start Date: |
| Label5- Text | End Date: |
15. Rename each TextBox's property as defined below. You can do this by selecting each TextBox, scrolling to the property, then typing in the value.
| Property | Value |
| TextBox1 - (ID) | txtFirstName |
| TextBox2 - (ID) | txtLastName |
| TextBox3 - (ID) | txtPayRate |
| TextBox4 - (ID) | txtStartDate |
| TextBox5 - (ID) | txtEndDate |
| Click on image to enlarge. [D] | |
|
16. Change each Button's ID and Text properties as defined below. You can do this by selecting each Button, scrolling to the property, then typing in the value.
| Property | Value |
| Button1 - (ID) | btnSubmit |
| Button1 - Text | Submit |
| Button2 - (ID) | btnCancel |
| Button2 - Text | Cancel |
17. In order to format the TextBoxes and Labels, we will make them the same size. Bring up the Layout Toolbar by clicking View, Toolbars, Layout.
18. Highlight each Label by pressing and holding the keyboard Ctrl button then clicking each Label. Make sure you click on the longest Label LAST.
19. Click the icon "Make Same Width" on the Layout Toolbar.
20. Save your work!!!
21. Test your work by running it (press F5 or click the Start Debugging button, or click Debug, Start Debugging).
| Click on image to enlarge. [D] | |
|
| STEP 2: frmPersonalVerified (10 points) |
23. Create a new Web form called frmPersonalVerified.aspx.
24. Click the Design tab for the frmPersonalVerified.aspx and add a Label and a TextBox. Set the properties as follows:
| Property | Value |
| Label - Text | Information to submit: |
| Textbox - (ID) | txtVerifiedInfo |
| Textbox - Height | 80px |
| Textbox - Width | 400px |
| Textbox - TextMode | Multiline |
25. Double click anywhere on a blank part of the Web page to open the code portion. The cursor should be in the protected void Page_Load (object sender, EventArgs) function. Enter the following information:
| //Your comments here txtVerifiedInfo.Text = Request["txtFirstName"] + "\n" + Request["txtLastName"] + "\n" + Request["txtPayRate"] + "\n" + Request["txtStartDate"] + "\n" + Request["txtEndDate"]; |
26. Return to the frmPersonnel Web page, click the btnSubmit button, go to the PostBackUrl property, and set it to frmPersonalVerified.aspx. To do this, you can click the ellipse to the right of this property to open a Browse dialog and click frmPersonalVerified.aspx there. This will insert the correct path into the PostBackUrl property.
| STEP 3: Verify and submit (10 points) |
27. Save your work and run the project. You should be able to enter the information in the frmPersonel web page, click the Submit button, and have it displayed in the frmPersonalVerified web page.
28. Run your project. When you open the project, you should be able to enter data in the frmPersonnel and have it displayed in the frmPersonnelVerified. Once you have verified that it works, save your project, zip up all files, and submit in the Dropbox.
NOTE: Make sure you include comments in the code provided where specified (where the "//Your comments here" is mentioned), or else a five point deduction per item (form, class, function) will be made. You basically put two forward slashes to start the comment; anything after the slashes on that line is disregarded by the compiler. Then type a brief statement on what is happening in the line under it. Comments show professionalism and are a must in systems. As a professional developer, comments will set you apart from others and make your life much easier if maintenance and debugging are needed.
| Click on image to enlarge. [D] | |
|
