I want to show Components in a tabs , so first of all create few components. In this project we have three components, First View Component public class AllViewComponent : ViewComponent { private readonly UserManager<ApplicationUser> _userManager; public AllViewComponent(UserManager<ApplicationUser> userManager) { _userManager = userManager; } public async Task<IViewComponentResult> InvokeAsync() { List<StudentViewModel> allUsers = new List<StudentViewModel>(); var items = await _userManager.Users.ToListAsync(); foreach (var item in items) { allUsers.Add(new StudentViewModel {Id=item.Id, EnrollmentNo = item.EnrollmentNo, FatherName = item.FatherName, Name = item.Name, Age = item.Age, Birthdate = item.Birthdate, Address = item.Address, Gender = item.Gender, Email = item.Email }); }
Introduction
"Independent functional unit work together" known as system. Like Computer System, it contains multiple independent units ( Hard disk, mother board , processor etc) But these units are depended on each other. Same thing in Student Information System, which contains different types of module such as
- Personal Information of students
- Progress Card information of student
- And last one is Current status of student.
Brings these module, we will design a System. First of all we discuss about Personal Information. Before reading about this project , you can see my project gallery.
How to Design Online Student Information System
- Online Course Registration System Project
- Online Hotel Reservation System Project
- Finger Print Based System.
- Online Blood bank Project System
- Offline Banking System
- Online Polling System
- Student and Fees management system
- Online Mobile Shopping Project
- College WebSite Project
- Online Job Project Portal
- Online Gym Application Project
Student's Personal Information
Store information related to student like StudentID, StudentName, Student Address and many more things. All Information stored in Database table, Store data related to other database table.How to Design Online Student Information System
Comments
Post a Comment