ASP.Net MVC Application for managing Departments and students in it and the courses they study
Using ASP.NET MVC and dealing with SQL Server to get and set data
The Educational System is an ASP.NET MVC application designed to manage departments, students within those departments, and the courses they study. It utilizes ASP.NET MVC framework for web development and SQL Server for data storage and retrieval.
- ASP.NET MVC: Framework for building web applications using Model-View-Controller pattern.
- SQL Server: Database management system for storing and managing application data.
- C#: Programming language used in ASP.NET development.
- Clone this repository to your local machine.
- Ensure you have Visual Studio installed with ASP.NET MVC support.
- Open the solution file in Visual Studio.
- Update the connection string in
Web.config
to point to your SQL Server instance. - Build and run the application.
- Department Management: Add, edit, and delete departments.
- Student Management: Manage students within departments.
- Course Management: Assign courses to students and departments.
- Authentication: Secure access to application features using authentication.
- Authorization: Control access to different parts of the application based on user roles.
- Login to the application using valid credentials.
- Navigate through the dashboard to access department, student, and course management features.
- Perform CRUD operations on departments, students, and courses as needed.
- Logout from the application when done.
- Customize the application as per your educational institution's requirements.
- Ensure proper data validation and error handling throughout the application.
- Refer to ASP.NET MVC and SQL Server documentation for detailed information and best practices.