ASP. Net to realize student management system
Specific controls and main attributes required by the student management system:
1. Login form
Basic controls:
Label (label control)
Main attribute: image (image displayed on label)
Text (text displayed on the label)
Text@R_963_2419 @(text box control)
Main attribute: PasswordChar (indicates the character displayed in the text box when it is used as a password box, rather than the text actually entered)
Button (button control)
Combo@R_963_2419 @(drop-down box) property: selectedItem: gets the currently selected item
Event: click (occurs when the control is clicked)
Sender is the event source, which indicates the object where the event occurred. During the event, the event source is the button.
E is the event parameters (EventArgs) object. Different events have different parameters.
The close () method is a method of the form class form, which is used to close the form.
2. Myschool administrator
01. Add an event handler to the "new student" menu item in the menu bar, with the following code
02. Add student information
3. Query student information
//Query student information
Modify student information
The above is the key code for the implementation of the student management system. I hope it will help you in your study. You can make the student management system and expand the function of the student management system.