I am mainly responsible for the implementation of the athlete profile module and the production of the master version. The athlete's basic information is divided into two basic tables for storage. The athlete table stores the athlete's basic personal information including number, name, height, weight and other physical information, and also The number of the representative team is stored, and the delegate table stores the basic information of each representative team. This module mainly realizes the addition, deletion, modification and query of athlete information. The query function realizes fuzzy query of athlete information and representative team information. The GridView control is used to realize the display, and useless information can be deleted directly. However, the information displayed in the GridView is limited and cannot display all the information, so according to the selected records, you can View details. To add a function, use two LinkButton buttons to make a selection. Different interfaces will be displayed according to the selection to complete the insertion function. The modification function is to first query the record through the number of the record to be modified, display it through the control, and modify it as needed. , and then submit after modification to complete the update operation.
The home page is: main.aspx
The main functions are: query athlete information, insert athlete information, update athlete information, athlete competition records
Note that when configuring the database, you need to batch modify the relevant sql database connection information.
Expand