Homework
Use ASP.Net to build a simple login page for a database-driven website. Include the following:
- A login ID field
- A password field, setting the password's text field type to "password" rather than just "text" so that it will mask out the text you type into it
- A submit button
When you press the submit button, the system should verify that the login ID and password that have been entered are equal to some predefined values (e.g., "joe", "secret"). Choose the appropriate validation technology or combination of technologies from lab #10 (e.g., the explicit event handler code or a validator) to implement this feature.
You may use any SQL Server database for this homework, including your PDP database if it is a .Net project.
Personal Database Project
Include a login page into your project. If you're using .Net technology for your project, then you can just include the login page you built for the homework portion of this project, otherwise you should implement a similar feature in your chosen technology.
What to turn in
Use Knightvision to submit your new .aspx page and backing VB code file as attachments.
Back to the top