CIS 407 iLab 4 of 7: Web forms and database interaction

profileJohnny EdTech
 (Not rated)
 (Not rated)
Chat

Title: CIS 407 iLab 4 of 7: Web forms and database interaction

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 Lab 4: Web forms and database interaction (bachelors program)

Your tutorial will include these files:

  • CIS407_Lab4.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 4 exercise with ease.

CIS 407 iLab 4 of 7: Web Forms and Database Interaction Assignment description:

STEP 1: Data Layer (10 points)

 
  1. Open Microsoft Visual Studio.NET 2008.
  2. Click the ASP.NET project called PayrollSystem to open it.
  3. Open the clsDataLayer class and add the following function:

    // This function saves the personnel data
    public static bool SavePersonnel(string Database, string FirstName, string LastName,
                                     string PayRate, string StartDate, string EndDate)
    {

        bool recordSaved;
 
        try { 
            // Add your comments here
            OleDbConnection conn = new OleDbConnection("PROVIDER=Microsoft.Jet.OLEDB.4.0;" +
                                                       "Data Source=" + Database);
            conn.Open();
            OleDbCommand command = conn.CreateCommand();
            string strSQL; 
            // Add your comments here
            strSQL = "Insert into tblPersonnel " +
                     "(FirstName, LastName, PayRate, StartDate, EndDate) values ('" +
                     FirstName + "', '" + LastName + "', " + PayRate + ", '" + StartDate + 
                    "', '" + EndDate + "')"; 
            // Add your comments here
            command.CommandType = CommandType.Text;
            command.CommandText = strSQL; 
            // Add your comments here
            command.ExecuteNonQuery(); 
            // Add your comments here
            conn.Close(); 
            recordSaved = true; 
        } catch (Exception ex) { 
            recordSaved = false;

        }

        return recordSaved;     }

  1. In the frmPersonnelVerified form, go to the Page_Load() event and add the following code after the existing code (but in the Page_Load event handler):

// Add your comments here
if (clsDataLayer.SavePersonnel(Server.MapPath("PayrollSystem_DB.mdb"), 
                               Session["txtFirstName"].ToString(), 
 Session ["txtLastName"].ToString(), 
       Session ["txtPayRate"].ToString(), 
 Session ["txtStartDate"].ToString(), 
 Session ["txtEndDate"].ToString())) 

    txtVerifiedInfo.Text = txtVerifiedInfo.Text + 
                          "\nThe information was successfully saved!";


else 
{
            txtVerifiedInfo.Text = txtVerifiedInfo.Text + 
                                 "\nThe information was NOT saved.";

  1. Add comments for all code containing // Add your comments here.
  2. Test your work to make sure no errors occur!  (Make sure to put in valid date values for the date data entry fields).

STEP 2: Data Display and Search (10 points)

 
  1. Using the skills you learned in Week 3, create a new DataSet for the tblPersonnel table (called the DataSet dsPersonnel).
  2. Using the skills you learned in Week 3, create a new function called GetPersonnel in the clsDataLayer class. This function should retrieve all data from the tblPersonnel table and return it in the form of a dsPersonnel DataSet. Use the GetUserActivity function as an example.
  3. Create a new Web form called frmViewPersonnel.
  4. Using the skills you learned in Week 3, add a GridView control (called grdViewPersonnel) to the form. This GridView control will be used to display data from the tblPersonnel table. Add the CoolBiz logo at the top of the page and make sure it links back to frmMain. 
  5. Add the following code to the Page_Load() function in frmViewPersonnel:

 

if (!Page.IsPostBack) {
// Declare the DataSet
dsPersonnel myDataSet = new dsPersonnel();

// Fill the dataset with what is returned from the function
myDataSet = clsDataLayer.GetPersonnel(Server.MapPath("PayrollSystem_DB.mdb"));
// Set the DataGrid to the DataSource based on the table
grdViewPersonnel.DataSource = myDataSet.Tables["tblPersonnel"];

// Bind the DataGrid
grdViewPersonnel.DataBind();
}

  1. Return to the frmPersonnel Web form and add a button ((ID) = btnViewPersonnel, Text = View Personnel) which, when clicked, will display form frmViewPersonnel.
  2. Using the skills you learned in Week 3, open the frmPersonnelVerified form and add a button ((ID) = btnViewPersonnel, Text = View Personnel) which, when clicked, will display form frmViewPersonnel. NOTE: This is the same button with the same functionality that you added to form frmPersonnel in the previous step. Also add a new link and linked image to frmMain called View Personnel that will go to the new frmViewPersonnel page you created. 
  3. You will now add a search feature to allow the user to find and display data. The user will enter a last name and the web application will display the grid of employees with all employees that match that last name.
  4. Create a new web form called frmSearchPersonnel. Add the hyperlinked Cool Biz logo to this page. Also add a new item on frmMain (with a link button and image button) called Search Personnel.
  5. On the frmSearchPersonnel form, add a label that displays "Search for employee by last name:". Next to the label, add a text box with an ID of txtSearchName. Add a button with an ID of btnSearch and set the text of the button to "Search".
  6. When the frmSearchPersonnel Search button is pressed, the frmViewPersonnel is displayed. At this point, no searching is actually happening, but you have the forms you need and the navigation working. Now you can focus on the coding you will need to do to have the grid only display matching employees.
  7. Before calling the GetPersonnel method you added previously in the lab, get the value that is in the Request["txtSearch"] item. When the form posts the search page results to the frmViewPersonnel, the name value pair for the search value is passed as part of the Request object. Assign this value to a string variable.
  8. Modify the GetPersonnel method you added to include a new parameter called strSearch of type string. This parameter needs to be after the Database string parameter that is already in the method.
  9. When calling the GetPersonnel method, pass the value you received to the strSearch parameter.
  10. In the GetPersonnel method, you now need to use the passed in strSearch parameter value as part of the SQL string being used to retrieve data. You also need to add logic so that, if strSearch is empty or has no value, all employees are returned in the query.
  11. Test the search so that when you enter a last name, employees with that last name are returned. Make sure that when you access frmViewPersonnel and you are not searching, all employees are returned.
  12. Lab Hints: 

    Make sure you reestablish your database connection if you copied the files from a previous lab. 

    Before you pass the search value into the GetPersonnel method, make sure you check to see if the Request item is null. If it is, you need to pass an empty string into the method or check for null inside the method. If you don't do this, you will get a server error. To check to see if an object is null, you compare the object to the keyword null. 

    To create an SQL statement that will search for a given last name in the tblPersonnel table, you can do the following (assume that the search variable was called strSearch). 

    "select * from tblPersonnel where LastName = '" + strSearch + "'"

 

  1. Add the new Search option and the View Employees option to your main navigation page.

STEP 3: Test and submit (10 points)

 

Run your project and test it as follows: 

The frmMain form should be displayed first (set this form as your start page).

Click on the Add New Employee hyperlink to go to the frmPersonnel data entry form. Click the View Personnel button on this form. The frmViewPersonnel form should be displayed in the browser, but at this point, there should not be any personnel listed (because you haven't entered any yet). 

Use the Back button in your web browser to return to the frmPersonnel form and enter some personnel data, similar to the following:

Now click the Submit button. The frmPersonnelVerified form should be displayed, showing the data you entered, and you should get a message saying that the data was successfully saved, like this:

Finally, click the View Personnel data button on this form. The frmViewPersonnel form should be displayed and should show the personnel record you just entered, retrieved from the database, like this:

You also should be able to view the employee records by clicking the link on the home page.

Test the search feature and make sure that entering no search string returns all the data and that typing in a last name will return all employees with the same last name.

    • 9 years ago
    CIS 407 iLab 4 of 7: Web forms and database interaction
    NOT RATED

    Purchase the answer to view it

    blurred-text
    • attachment
      lab4.zip