Late submission of coursework policy: Late submissions will be processed in accordance with current University regulations which state:
“the time period during which a student may submit a piece of work late without authorisation and have the work capped at 40% [50% at PG level] if passed is 14 calendar days. Work submitted unauthorised more than 14 calendar days after the original submission date will receive a mark of 0%. These regulations apply to a student’s first attempt at coursework. Work submitted late without authorisation which constitutes reassessment of a previously failed piece of coursework will always receive a mark of 0%.
Main Success Scenario:
1.System loads the page.
2.User enters their username and password and then clicks login Button.
3.System validates input fields.
4.System queries database to authenticate the username and password.
5.System creates Session objects for UserID, UserName, CourseID and RoleID.
6.User is redirected to UserAccount.aspx.
Extensions:
a: Entered username length is less than 6 or greater than 20 characters.
1: Output appropriate error message.
b: Entered password length is less than 5 characters .
1: Output appropriate error message.
a: Database query returns no rows – details must be incorrect.
1: Output appropriate error message.
b: Catch database error.
1: Output appropriate error message.
Main Success Scenario:
1.System ensures page request is not a postback.
2.System queries database and populates DropDownList with courses.
3.System loads the page
Extensions:
2a: Catch database error.
1: Output appropriate error message.
Main Success Scenario:
1.Student enters a username, password, password confirmation, full name, email address, selects a course and then clicks register Button.
2.System validates input fields.
3.System queries database to ensure username does not already exist.
4.System inserts new student user into the database.
5.Student is redirected to UserLogin.aspx.
Extensions:
2a: Entered username length is less than 6 or greater than 20 characters.
2b: Entered password length is less than 5 characters.
2c: Entered password confirmation not equal to password input.
2d: Entered real name field is empty.
2e: Entered email field is empty or the email does not contain the string “dmu1.ac.uk”.
3a: Database query returns a record – username must already exist.
4a: Catch database error.
Main Success Scenario:
1.System ensures a user is logged in (i.e. a Session exists).
2.System loads the page.
3.User enters current password, new password and new password confirmation then clicks update password Button.
4.System validates input fields.
5.System queries database to ensure current password is correct.
6.System updates user’s password in database.
The post IMAT5210 E-Commerce Software appeared first on My Assignment Online.