Warning: include(/home/smartonl/royalcustomessays.com/wp-content/advanced-cache.php): failed to open stream: No such file or directory in /home/smartonl/royalcustomessays.com/wp-settings.php on line 95

Warning: include(): Failed opening '/home/smartonl/royalcustomessays.com/wp-content/advanced-cache.php' for inclusion (include_path='.:/opt/alt/php56/usr/share/pear:/opt/alt/php56/usr/share/php') in /home/smartonl/royalcustomessays.com/wp-settings.php on line 95
week5 ilab CIS407 – RoyalCustomEssays

week5 ilab CIS407

CTU SCM210 Phase 5 Individual Project
September 25, 2018
CTU SCM210 Phase 1 discussion
September 25, 2018

All files are located in the subdirectory of the project. The project should function as specified: When you press the Submit
button in frmPersonnel, a record should be saved in the tblPersonnel
table containing the FirstName, LastName, PayRate, StartDate, and
EndDate that you entered. Test that the transaction will roll back by
entering invalid information in one or more items, such as Hello for a
StartDate. Check that client-side validation works: The ability to edit
employees in a grid is working. Once you have verified that it works,
save your website, zip up all files, and submit them to the Dropbox.
Required Software
Microsoft Visual Studio.NET Access the software at .devry.edu”>https://lab.devry.edu. Steps: 1, 2, and 3
iLAB STEPS
STEP 1: Modify the clsDataLayer to Use a Two-Step Process
.equella.ecollege.com/file/e606e21e-bbe0-4e00-98b0-b9191a3ad07f/26/CIS407A_W5_iLab.html#top”>
Back to Top

1. Open Microsoft Visual Studio.NET.2. Click the ASP.NET project called PayrollSystem to open it.3. Open the clsDataLayer class.4. Modify the SavePersonnel() function so that instead of just doing a single SQL INSERT operation with all of the personnel data, it does an INSERT with only the FirstName and LastName, followed by an UPDATE
to save the PayRate, StartDate, and EndDate into the new record. (This
two-step approach is not really necessary here because we are dealing
with only one table, tblPersonnel, but we are doing it to simulate a
case with more complex processing requirements, in which we would need
to insert or update data in more than one table or maybe even more than
one database.) Find the following existing code in the SavePersonnel() function: // 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();

Modify it so that it reads as follows: // Add your comments here
strSQL=”Insert into tblPersonnel “+
“(FirstName, LastName) values (‘”+
FirstName+”‘, ‘”+LastName+”‘)”;
// Add your comments here
command.CommandType=CommandType.Text;
command.CommandText= strSQL;
// Add your comments here
command.ExecuteNonQuery();
// Add your comments here
strSQL=”Update tblPersonnel “+
“Set PayRate=”+PayRate+”, “+
“StartDate='”+StartDate+”‘, “+
“EndDate='”+EndDate+”‘ “+
“Where ID=(Select Max(ID) From tblPersonnel)”;
// Add your comments here
command.CommandType=CommandType.Text;
command.CommandText= strSQL;
// Add your comments here
command.ExecuteNonQuery();

5. Set frmMain as the
startup form and run the PayrollSystem Web application to test the
changes. When valid data values are entered for a new employee, things
should work exactly as they did previously. To test it, enter valid data
for a new employee in frmPersonnel and click Submit. The
frmPersonnelVerified form should be displayed with the entered data
values and a message that the record was saved successfully. Click the
View Personnel button and check that the new personnel record was indeed
saved to the database and that all entered data values, including the
PayRate, StartDate, and EndDate, were stored correctly. Close the
browser window.Now run the PayrollSystem Web application again,
but this time, enter some invalid data (a nonnumeric value) in the
PayRate field to cause an error, like this:.equella.ecollege.com/file/e606e21e-bbe0-4e00-98b0-b9191a3ad07f/26/week5_cis407Lab5Fig7.jpg” alt=””>6. Now, when you click Submit, the frmPersonnelVerified form should display a message indicating that the record was not saved:.equella.ecollege.com/file/e606e21e-bbe0-4e00-98b0-b9191a3ad07f/26/week5_cis407Lab5Fig8.jpg” alt=””>However,
when you click on the View Personnel button to display the personnel
records, you should see that an incomplete personnel record was in fact
created, with missing values for the PayRate, StartDate, and EndDate
fields.This occurred because the Insert statement succeeded but
the following Update statement did not. We do not want to allow this to
happen because we end up with incomplete or incorrect data in the
database. If the Update statement fails, we want the Insert statement to
be rolled back, or undone, so that we end up with no record at all. We
will fix this by adding transaction code in the next step.
STEP 2: Add Transaction Code
.equella.ecollege.com/file/e606e21e-bbe0-4e00-98b0-b9191a3ad07f/26/CIS407A_W5_iLab.html#top”>Back to Top

7. In the clsDataLayer.cls
class file, add code to the SavePersonnel() function to create a
transaction object. Begin the transaction, commit the transaction if all
database operations are successful, and roll back the transaction if
any database operation fails. The following listing shows the complete
SavePersonnel() function; the lines you will need to add are marked with
** NEW ** in the preceding comment and are shown in bold and underlined.// This function saves the personnel data
public static bool SavePersonnel(string Database, string FirstName, string LastName,
string PayRate, string StartDate, string EndDate)
{
bool recordSaved;// ** NEW ** Add your comments here
OleDbTransaction myTransaction = null;

try
{

// Add your comments here
OleDbConnection conn = new OleDbConnection(“PROVIDER=Microsoft.ACE.OLEDB.12.0;” +
“Data Source=” + Database);
conn.Open();
OleDbCommand command = conn.CreateCommand();
string strSQL;

// ** NEW ** Add your comments here
myTransaction = conn.BeginTransaction();
command.Transaction = myTransaction; // Add your comments here
strSQL = “Insert into tblPersonnel ” +
“(FirstName, LastName) values (‘” +
FirstName + “‘, ‘” + LastName + “‘)”;

// Add your comments here
command.CommandType = CommandType.Text;
command.CommandText = strSQL;

// Add your comments here
command.ExecuteNonQuery();

// Add your comments here
strSQL = “Update tblPersonnel ” +
“Set PayRate=” + PayRate + “, ” +
“StartDate='” + StartDate + “‘, ” +
“EndDate='” + EndDate + “‘ ” +
“Where ID=(Select Max(ID) From tblPersonnel)”;

// Add your comments here
command.CommandType = CommandType.Text;
command.CommandText = strSQL;

// Add your comments here
command.ExecuteNonQuery();

// ** NEW ** Add your comments here
myTransaction.Commit();

// Add your comments here
conn.Close();
recordSaved = true;

}
catch (Exception ex)
{

// ** NEW ** Add your comments here
myTransaction.Rollback();

recordSaved = false;

}

return recordSaved;

}8. Run your Web application. First, enter valid data in all fields of frmPersonnel.
When you press the Submit button in frmPersonnel, a record should be
saved in the tblPersonnel table containing the FirstName, LastName,
PayRate, StartDate, and EndDate. With valid data entered in all items,
the successfully saved message should appear, indicating that the transaction was committed..equella.ecollege.com/file/e606e21e-bbe0-4e00-98b0-b9191a3ad07f/26/week5_cis407Lab5Fig9.jpg” alt=””>Click the View Personnel button and verify that the new record was in fact added to the database table correctly..equella.ecollege.com/file/e606e21e-bbe0-4e00-98b0-b9191a3ad07f/26/week5_cis407Lab5Fig10.jpg” alt=””>9.
Now, close the browser, run the Web application again, and this time,
test that the transaction will roll back after entering incorrect
information. On the frmPersonnel form, enter invalid data for PayRate and click Submit. The not saved message should appear, which indicates that the transaction was rolled back..equella.ecollege.com/file/e606e21e-bbe0-4e00-98b0-b9191a3ad07f/26/week5_cis407Lab5Fig11.jpg” alt=””>Click the View Personnel button and verify that this time, as desired, an incomplete record was not added to the database table..equella.ecollege.com/file/e606e21e-bbe0-4e00-98b0-b9191a3ad07f/26/week5_cis407Lab5Fig12.jpg” alt=””>10. You have seen how we used the try/catch
block to catch an unexpected error. You may have noticed that if you
enter bad data for the dates, an exception is thrown. Go back to the
validation code that you added in the frmPersonnel code and add a
try/catch with logic to prevent an invalid date from causing a server
error.11. In the Week 3 Lab, you learned how to validate
code once the page was posted back to the server. There is some
validation that must be done on the server because it requires server
resources such as the database. Some validation can also be done on the
client. If you can do validation on the client, it saves a round trip to
the server, which will improve performance. In this approach, we will
check values before the page is submitted to the server for processing.
Normally, there is a combination of server and client validation used in
a Web application. ASP.Net includes validation controls which will use
JavaScript on the client to perform validation. You will find these controls in the Validation group in the toolbox.12. Add validation controls to the frmPersonnel form as follows: For the first, last name, and pay rate, make sure each field has data in it. Use the RequiredFieldValidator
for this task. Add the control to the right of the text box that you
are validating. The location of the validator control is where the error
message (if there is one) will appear for the control to which you link
the validator. You will be adding one validator control for each text
box that you want to validate. Remember to set the ControlToValidate and ErrorMessage
properties on the validator control. Making this change eliminates the
need for the server-side check you were doing previously. Use a regular expression validator to check that the start and end date are in the correct format.In order to keep the validation controls from causing wrapping, you may want to increase the Panel width.A regular expression for mm/dd/yyyy is this:^(0[1-9]|1[012])[- /.](0[1-9]|[12][0-9]|3[01])[- /.](19|20)dd$.equella.ecollege.com/file/e606e21e-bbe0-4e00-98b0-b9191a3ad07f/26/week5_cis407Lab5Fig1.png” alt=””>13. Remove the View Personnel and Cancel
buttons from the frmPersonnel form, because they will cause a Postback
and invoke the client-side editing that you just added. The user is able
to get to the View Personnel from the main form and from the personnel
verification screen, so there is no need for these buttons now.14.
Because you have entered data in this lab that is invalid and those
partial records are in the database, you will need to add the ability to remove or update data. Open up frmMain and add a new main form option called Edit Employees. Add the link and image for it. This option will take the user to a new form called frmEditPersonnel..equella.ecollege.com/file/e606e21e-bbe0-4e00-98b0-b9191a3ad07f/26/week5_cis407Lab5Fig2.jpg” alt=””>15. Add the new form frmEditPersonnel. On frmEditPersonnel, add the ACIT logo at the top of the form. Add a label that says Edit Employees. Add a GridView control with an ID of grdEditPersonnel.16. You will now add a SQLDataSource
to the page. You will be using a databound grid for this form unlike
the previous grids, in which you added as unbound (in the designer).17. Add a new SQLDataSource
control to the frmEditPersonnel in the Design View. This is not a
visible control; that is, it will only appear in Design View, but the
user will never see it. Note: If you change the folder name or location
of your database, you will need to reconfigure the data source
(right-click on the data source control and select the Configure Data
Source option).18. There is a small >
indicator in the Design View of the SQL Data Source control that you
added. If the configuration menu is collapsed (press it to open the
menu), or there is a < with the menu displayed, from the data source menu, select Configure Data Source.19. Press the New Connection button and browse for the database.20. Press the Next button.21. When asked if you want to save the connection in the application configuration file, check the Yes check box and press Next.22. Select the tblPersonnel table.23. Select all columns (you can use the * for this).24. Press the Advanced button and check the Generate Insert, Update, and Delete option and press the OK button.25. Press the Next button.26. Press the Test Query button and make sure that you see all records in the database like the image below. If it does not, repeat the above steps to make sure that you did everything properly (and selected the correct database - if you are not sure, open the database in Windows Explorer to be sure that it is the one with data in tblPersonnel). Press the Finish button..equella.ecollege.com/file/e606e21e-bbe0-4e00-98b0-b9191a3ad07f/26/week5_cis407Lab5Fig3.jpg" alt="">27. Click on the grid that you added in the Design View and expand the Properties menu (the little > in the upper right of the control). Choose the data source you just added. On the GridView tasks menu, select Edit columns. Add an Edit, Update, and Cancel Command field. Add a Delete Command field. Press OK. You can now test the grid, which is a fully functioning Update and Delete grid. Try it out!.equella.ecollege.com/file/e606e21e-bbe0-4e00-98b0-b9191a3ad07f/26/week5_cis407Lab5Fig6.jpg” alt=””>
STEP 3: Test and Submit
.equella.ecollege.com/file/e606e21e-bbe0-4e00-98b0-b9191a3ad07f/26/CIS407A_W5_iLab.html#top”>Back to Top

28. Once you have
verified that everything works as it is supposed to work, save your
project, zip up all files, and submit it to the Dropbox.NOTE:
Make sure you include comments in the code provided where specified
(where the ” // Your comments here” is mentioned) and for any code you
write, or else a 5-point deduction per item (form, class, function) will
be made.

Place Order