Final Student Management System Project Report
Final Student Management System Project Report
1. Introduction
The Student Management System (SMS) is a web-based application developed using ASP.NET with C# and
MySQL. It simplifies the management of student data for institutions. The system enables authorized users to
2. Objective
To develop a secure, scalable, and easy-to-use student management solution that minimizes manual
3. Technologies Used
- C#
- MySQL
- Visual Studio
- MySQL Workbench
4. System Features
- Search Students
- Admin/User Roles
- Report Generation
Page 1
Student Management System - Final Project Report
5. Database Design
6. ER Diagram
7. System Architecture
8. Screenshots
Page 2
Student Management System - Final Project Report
string query = "INSERT INTO students(name, dob, class, email, phone) VALUES(@name, @dob, @class,
@email, @phone)";
cmd.Parameters.AddWithValue("@name", txtName.Text);
cmd.Parameters.AddWithValue("@dob", txtDOB.Text);
cmd.Parameters.AddWithValue("@class", ddlClass.SelectedValue);
cmd.Parameters.AddWithValue("@email", txtEmail.Text);
cmd.Parameters.AddWithValue("@phone", txtPhone.Text);
conn.Open();
cmd.ExecuteNonQuery();
conn.Close();
10. Conclusion
This project demonstrates how ASP.NET, C#, and MySQL can be used together to develop a robust and
efficient system for managing student information. Future enhancements may include REST API integration,
Page 3