Purchase Solution

Web Application Development - Visual Studio.Net

Not what you're looking for?

Ask Custom Question

Create a database with a table called "tblStudents" and "tblLogin." This table should have the following columns.

StudentID -Text (Primary Key.)
LastName - Text.
TelephoneNumber - Text.
Level (e.g. "sophomore," "junior," etc.)

The table, tblLogin, should have the following columns -

ID - Autonumber (Primary Key.)
UserName - Text (set it to a unique value.)
Password - Text.
Add several records to this table.

Use Visual Studio.NET 2005 to create an ASP.NET with three aspx forms.

The first form is a login page that contains a Login control. Users cannot view the other forms until they have successfully logged onto the application.
The second form contains a GridView control, The GridView control will allow the user to
-view the entries in the database table
-update the telephone number column.

The last form contains three textboxes labeled "StudentID," "Last Name," and "Telephone Number" and a drop down menu with the entries, "Freshman," "Sophomore," "Junior," and "Senior," and a Label control. When the user presses the button, their entry is added to the database.
Use a RegularExpressionValidator control to confirm that the user has entered a properly formatted telephone number. Use RequiredFieldValidator controls to determine if the user entered a string in the other textboxes. Use Try...Catch to display an error message in the Label control if the user tries to enter a student ID that is already stored in the database.

Purchase this Solution

Solution Summary

This solution is provided in two documents, a .zip and Word file.

Solution Preview

Please see attached file.

This is a web application for managing student's information.
This has an access database with tables called "tblStudents" and "tblLogin." This table should have the following columns.
StudentID -Text (Primary Key.)
LastName - Text.
TelephoneNumber - Text.
Level (e.g. "sophomore," "junior," etc.)

The table, tblLogin, should have the following columns -
ID - Autonumber (Primary Key.)
UserName - Text (set it to a unique value.)
Password - Text.
Added several records to these ...

Purchase this Solution


Free BrainMass Quizzes
C# variables and classes

This quiz contains questions about C# classes and variables.

Excel Introductory Quiz

This quiz tests your knowledge of basics of MS-Excel.

Basic UNIX commands

Use this quiz to check your knowledge of a few common UNIX commands. The quiz covers some of the most essential UNIX commands and their basic usage. If you can pass this quiz then you are clearly on your way to becoming an effective UNIX command line user.

Word 2010: Table of Contents

Ever wondered where a Table of Contents in a Word document comes from? Maybe you need a refresher on the topic? This quiz will remind you of the keywords and options used when working with a T.O.C. in Word 2010.

Java loops

This quiz checks your knowledge of for and while loops in Java. For and while loops are essential building blocks for all Java programs. Having a solid understanding of these constructs is critical for success in programming Java.