ASP Production Data Entry and Management

Post on 06-Jan-2016

25 views 2 download

description

ASP Production Data Entry and Management. EET 499 Final Project By Ian Gass. Project Goals. Secure Enter Production Data Manage Production Data Manage User Accounts. Login.asp. Main( ) InvalidPassword( ) FailedMustWait( ) LoginOK( ). DailyLogEntry.asp. Used to enter production data - PowerPoint PPT Presentation

Transcript of ASP Production Data Entry and Management

ASP Production Data Entry and Management

EET 499 Final Project

By Ian Gass

Project Goals

• Secure

• Enter Production Data

• Manage Production Data

• Manage User Accounts

Root

index.htm

main.htm

navbar.htm

DailyLogAdmin.asp

DailyLogEntry.asp

EditRecord.asp

DeleteRecord.asp

DataEntrySuccessful.asp

login.asp

logoff.asp

results.aspCommonFunctions.inc

UserAdministration

AddUser.asp

EditUser.asp

DeleteUser.asp

Login.asp

• Main( )

• InvalidPassword( )

• FailedMustWait( )

• LoginOK( )

DailyLogEntry.asp

• Used to enter production data

• Procedures• Includes CommonFunctions.inc

• Main( )• Calls VerificationForm( )

• Calls WriteToDB( )

• Calls LoggedOn( )

DailyLogAdmin.asp

• Used to manage the production data

• Procedures• Includes CommonFunctions.inc

• Calls LoggedOn( )

• Sends results to Results.asp in URL

Results.asp

• Displays results from the search created on DailyLogAdmin.asp

• Creates links to EditRecord.asp and DeleteRecord.asp

EditRecord.asp

• Get RecordID from URL

• Opens database and selects the record

• Displays the contents of the record

• Saves changes

DeleteRecord.asp

• Get RecordID from URL

• Verifies that the user wants to delete the selected record

• Removes the record from the table

AddUser.asp

• Checks if new user already exists• Checks for duplicate username

• Checks first name and last name

• Adds to user table

EditUser.asp

• Opens the table and retrieves record

• Displays form with fields filled in

• Writes any changes that were made

DeleteUser.asp

• Opens the table and retrieves record

• Verifies that the user wants to remove the selected record

• Removes the record from the database.