2023 Title CIS 407 iLab 2 of 7 User Input Web Pages Type Instant Download Format Zip Folder Contains all | Assignment Collections

Computer Science 2023 CIS 407 ILab 2 Of 7: User Input Web Pages

2023 Title CIS 407 iLab 2 of 7 User Input Web Pages Type Instant Download Format Zip Folder Contains all | Assignment Collections

Title: CIS 407 iLab 2 of 7: User Input Web Pages

Type: Instant Download

Format: Zip Folder (Contains all the files needed for accurate tutorial)

Version: Current 2013-14 (Click on tutorial image to view snapshot)

Frequently Asked Questions

What is included in the full course package? The entire course study guide includes the homework solution in zip file for CIS 407 iLab 2 of 7: User Input Web Pages (bachelors program)

Your tutorial will include these files:

  • CIS407_Lab2.Zip

What if I find a question is missing? Just shoot us an email or contact us via live chat. Our expert DBM tutors will add the answers to the study guide within 1 to 3 days. You will receive a free update to the study guide with the answers you need. 

Will this help me with CIS 407 problems? Yes, this guide is designed to help students get through the CIS 407 Lab 2 exercise with ease.

CIS 407 iLab 2 of 7: User Input Web Pages assignment description:

STEP 1: frmPersonnel (10 points)

 
  1. Open the payroll system 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. 
  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 cool biz production  logo onto the form at the very top. Set the alignment to center by highlighting the text then clicking Format, Justify, Center. You can switch to Source view and add the following HTML to create the logo:
  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!
  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.
    NOTE: To execute the application, you have these options:
    1. If you are using Citrix, press CTRL + F5 to Start Without Debugging. You will not be deducted points for this part.
    2. 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, and 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:

  1. Rename each TextBox’s property as defined below. You can do this by selecting each TextBox, scrolling to the property, and then typing in the value.

Property

Value

TextBox1 – (ID)

txtFirstName

TextBox2 – (ID)

txtLastName

TextBox3 – (ID)

txtPayRate

TextBox4 – (ID)

txtStartDate

TextBox5 – (ID)

txtEndDate

 

  1. Change each button’s ID and Text properties as defined below. You can do this by selecting each button, scrolling to the property, and then typing in the value.

Property

Value

Button1 – (ID)

btnSubmit

Button1 – Text

Submit

Button2 – (ID)

btnCancel

Button2 – Text

Cancel

  1. 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.
  2. Highlight each Label by pressing and holding the keyboard Ctrl button and then clicking each Label. Make sure you click on the longest Label last.
  3. Click the icon “Make Same Width” on the Layout Toolbar. (You may also select Format and then Make Same Size and then select width).
  4. Save your work!
  5. Test your work by running it (press F5 or click the Start Debugging button, or click Debug, Start Debugging).

STEP 2: frmPersonalVerified (5 points)

 
  1. Create a new web form called frmPersonalVerified.aspx
  2. 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

  1. 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:

        //Add your comments here
        txtVerifiedInfo.Text = Request[“txtFirstName”] +
            “n” + Request[“txtLastName”] +
            “n” + Request[“txtPayRate”] +
            “n” + Request[“txtStartDate”] +
            “n” + Request[“txtEndDate”];

  1. 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: Adding Navigation (5 points)

 
  1. Create a folder in Solution Explorer called images.
  2. Add a new web form called frmMain.
    1. Add the CoolBiz Logo to the top of the form (centered).
    2. Create links using a link button for each of the following items.

      Salary Calculator
      Add New Employee

    3. Create or find appropriate images for the Salary Calculator and New Employee links. Copy the images to the images folder created above.
    4. Add the images to the images folder by right-clicking on the images folder in Solution Explorer and selecting Add Existing Items. Select both images and Add to the images folder.
    5. Next to each link item, add an image button.
    6. Set each image button’s image to the appropriate image in the images folder.
    7. You may work with the format to make this page look nice by using tables or other HTML/CSS elements.
    8. Set the PostbackURL property to the appropriate page for each image and each link.

 

  1. On the frmPersonnel page, make the CoolBiz logo be a link that will take the user to the frmMain page. Use an ASP.Net Hyperlink control to do this.
  2. Update the frmPersonnel, frmPersonnelVerified, and frmSalaryCalculator to include the CoolBiz logo at the top of each page (centered) with the logo set as a hyperlink that will return to the frmMain page.
  3. On the frmPersonnel page, make it so that if the user presses the Cancel button then that user is taken back to the frmMain.

STEP 4: Verify and Submit (10 points)

 
  1. Save your work. Set the start page to frmMain and run the project. You should be able to go to both areas of your site and enter the information in the pages. Your calculator should properly calculate without errors, and then on the frmPersonel web page you can click the Submit button and have it display in the frmPersonalVerified web page. Once you have verified that it works, save your project, zip up all files, and submit in the Dropbox.

 

We give our students 100% satisfaction with their assignments, which is one of the most important reasons students prefer us to other helpers. Our professional group and planners have more than ten years of rich experience. The only reason is that we have successfully helped more than 100000 students with their assignments on our inception days. Our expert group has more than 2200 professionals in different topics, and that is not all; we get more than 300 jobs every day more than 90% of the assignment get the conversion for payment.

Place Order Now

#write essay #research paper #blog writing #article writing #academic writer #reflective paper #essay pro #types of essays #write my essay #reflective essay #paper writer #essay writing service #essay writer free #essay helper #write my paper #assignment writer #write my essay for me #write an essay for me #uk essay #thesis writer #dissertation writing services #writing a research paper #academic essay #dissertation help #easy essay #do my essay #paper writing service #buy essay #essay writing help #essay service #dissertation writing #online essay writer #write my paper for me #types of essay writing #essay writing website #write my essay for free #reflective report #type my essay #thesis writing services #write paper for me #research paper writing service #essay paper #professional essay writers #write my essay online #essay help online #write my research paper #dissertation writing help #websites that write papers for you for free #write my essay for me cheap #pay someone to write my paper #pay someone to write my research paper #Essaywriting #Academicwriting #Assignmenthelp #Nursingassignment #Nursinghomework #Psychologyassignment #Physicsassignment #Philosophyassignment #Religionassignment #History #Writing #writingtips #Students #universityassignment #onlinewriting #savvyessaywriters #onlineprowriters #assignmentcollection #excelsiorwriters #writinghub #study #exclusivewritings #myassignmentgeek #expertwriters #art #transcription #grammer #college #highschool #StudentsHelpingStudents #studentshirt #StudentShoe #StudentShoes #studentshoponline #studentshopping #studentshouse #StudentShoutout #studentshowcase2017 #StudentsHub #studentsieuczy #StudentsIn #studentsinberlin #studentsinbusiness #StudentsInDubai #studentsininternational