当前位置:网站首页>asp. Netnba information management system VS development SQLSERVER database web structure c programming computer web page source code project detailed design
asp. Netnba information management system VS development SQLSERVER database web structure c programming computer web page source code project detailed design
2022-07-07 14:49:00 【qq_ two hundred and fifty-one million eight hundred and thirty-】
One 、 Source features
asp.net NBA mis It's a perfect set of web Design management system , The system has complete source code and database , The development environment is vs2010, The database for sqlserver2008, Use c# Language development , The system mainly adopts B/S Pattern
Development .asp.netNBA mis VS Development sqlserver database web structure c# Programming computer web page source code project - E-commerce document resources -CSDN download One 、 Source features asp.netNBA The information management system is a complete set of web Design management system , More download resources 、 For learning materials, please visit CSDN Download channel .https://download.csdn.net/download/qq_41221322/85931201
asp.netNBA mis VS Development sqlserver Count
Two 、 Function is introduced
The main functions of the front desk :
home page
Team information
Player information
Team schedule
Record information
Video information
Team ranking
Real time news
The main functions of the background :
(1) User management : Add user information 、 Delete 、 Modify and view
(2) Team management : Add team information 、 Delete 、 Modify and view
(3) Team schedule management : Add team schedule information 、 Delete 、 Modify and view
(4) Player management : Add player information 、 Delete 、 Modify and view
(5) Performance management : Add the record information 、 Delete 、 Modify and view
(6) Video management : Add video information 、 Delete 、 Modify and view
(7) Real time news management : Add real-time news information 、 Delete 、 Modify and view
(8) Information type management : Add information type information 、 Delete 、 Modify and view
(9) information management : Add information 、 Delete 、 Modify and view
(10) Team ranking management : Add team ranking information 、 Delete 、 Modify and view
Database design
(1) User information table is shown in table 4.1 Shown :
surface 4.1 User information sheet
Serial number | Field name | data type | length | Primary key | describe |
1 | yhid | INTEGER | 11 | yes | The user id |
2 | yhm | VARCHAR | 40 | no | user name |
3 | mm | VARCHAR | 40 | no | password |
4 | xm | VARCHAR | 40 | no | full name |
5 | qx | VARCHAR | 40 | no | jurisdiction |
6 | lxdh | VARCHAR | 40 | no | contact number |
7 | lxdz | VARCHAR | 40 | no | Contact address |
(2) The team information table is shown in table 4.2 Shown :
surface 4.2 Team information sheet
Serial number | Field name | data type | length | Primary key | describe |
1 | qdid | INTEGER | 11 | yes | Team number |
2 | qdmc | VARCHAR | 40 | no | Team name |
3 | js | VARCHAR | 40 | no | Introduce |
4 | LOGO | VARCHAR | 40 | no | logo |
5 | zjl | VARCHAR | 40 | no | head coach |
(3) The team schedule is shown in the table 4.3 Shown :
surface 4.3 Team schedule information table
Serial number | Field name | data type | length | Primary key | describe |
1 | qdscid | INTEGER | 11 | yes | Team schedule number |
2 | sc | VARCHAR | 40 | no | Schedule |
3 | rq | VARCHAR | 40 | no | date |
4 | qd | VARCHAR | 40 | no | The team |
(4) The player information table is shown in table 4.4 Shown :
surface 4.4 Player information sheet
Serial number | Field name | data type | length | Primary key | describe |
1 | qyid | INTEGER | 11 | yes | Player number |
2 | qy | VARCHAR | 40 | no | players |
3 | qd | VARCHAR | 40 | no | The team |
4 | qyhm | VARCHAR | 40 | no | uniform number |
5 | csny | VARCHAR | 40 | no | date of birth |
6 | tz | VARCHAR | 40 | no | weight |
7 | sg | VARCHAR | 40 | no | height |
8 | js | VARCHAR | 40 | no | Introduce |
9 | wz | VARCHAR | 40 | no | Location |
10 | td | VARCHAR | 40 | no | characteristic |
11 | zp | VARCHAR | 40 | no | Photo |
12 | qysj | VARCHAR | 40 | no | Player data |
(5) The battle record information table is shown in table 4.5 Shown :
surface 4.5 Record information table
Serial number | Field name | data type | length | Primary key | describe |
1 | zjid | INTEGER | 11 | yes | Record number |
2 | zj | VARCHAR | 40 | no | record |
3 | bssj | VARCHAR | 40 | no | Time of the game |
4 | qd | VARCHAR | 40 | no | The team |
5 | jg | VARCHAR | 40 | no | result |
(6) The video information table is shown in table 4.6 Shown :
surface 4.6 Video information table
Serial number | Field name | data type | length | Primary key | describe |
1 | spid | INTEGER | 11 | yes | Video Number |
2 | bt | VARCHAR | 40 | no | title |
3 | nr | VARCHAR | 40 | no | Content |
4 | tp | VARCHAR | 40 | no | picture |
5 | sp | VARCHAR | 40 | no | video |
(7) The real-time news information table is shown in table 4.7 Shown :
surface 4.7 Real time news information table
Serial number | Field name | data type | length | Primary key | describe |
1 | ssxwid | INTEGER | 11 | yes | Real time news number |
2 | bt | VARCHAR | 40 | no | title |
3 | nr | VARCHAR | 40 | no | Content |
4 | fbsj | VARCHAR | 40 | no | Release time |
(8) The information type table is shown in table 4.8 Shown :
surface 4.8 Information type table
Serial number | Field name | data type | length | Primary key | describe |
1 | xxlxid | INTEGER | 11 | yes | Information type number |
2 | xx | VARCHAR | 40 | no | Information |
(9) The information table is shown in table 4.9 Shown :
surface 4.9 Information sheet
Serial number | Field name | data type | length | Primary key | describe |
1 | xxid | INTEGER | 11 | yes | Information number |
2 | bt | VARCHAR | 40 | no | title |
3 | lx | VARCHAR | 40 | no | type |
4 | nr | VARCHAR | 40 | no | Content |
5 | fbsj | VARCHAR | 40 | no | Release time |
6 | zp | VARCHAR | 40 | no | Photo |
(10) The information type table is shown in table 4.10 Shown :
surface 4.10 Real time news information table
Serial number | Field name | data type | length | Primary key | describe |
1 | qdpmid | INTEGER | 11 | yes | Team ranking number |
2 | qd | VARCHAR | 40 | no | The team |
3 | pm | VARCHAR | 40 | no | ranking |
4 | sf | VARCHAR | 40 | no | Victory or defeat |
3、 ... and 、 matters needing attention
1、 Administrator account :admin password :admin
2、 The development environment is vs2010, The database for sqlserver2008, Use c# Language development .
3、 The database file name is aspnetnba.mdf
4. The login address :index.aspx

边栏推荐
- AWS学习笔记(三)
- Several ways of JS jump link
- OAuth 2.0 + JWT protect API security
- Cvpr2022 | backdoor attack based on frequency injection in medical image analysis
- Instructions for mictr01 tester vibrating string acquisition module development kit
- Webrtc audio anti weak network technology (Part 1)
- Xiaomi's path of chip self-development
- 低代码平台中的数据连接方式(下)
- Ascend 910实现Tensorflow1.15实现LeNet网络的minist手写数字识别
- 2022年13个UX/UI/UE最佳创意灵感网站
猜你喜欢

在软件工程领域,搞科研的这十年!

Spatiotemporal deformable convolution for compressed video quality enhancement (STDF)

今日睡眠质量记录78分

The world's first risc-v notebook computer is on pre-sale, which is designed for the meta universe!

什么是云原生?这回终于能搞明白了!

How bad can a programmer be? Nima, they are all talents

Pinduoduo lost the lawsuit, and the case of bargain price difference of 0.9% was sentenced; Wechat internal test, the same mobile phone number can register two account functions; 2022 fields Awards an

数据湖(九):Iceberg特点详述和数据类型

LeetCode 648. Word replacement

【愚公系列】2022年7月 Go教学课程 005-变量
随机推荐
「2022年7月」WuKong编辑器更版记录
Ian Goodfellow, the inventor of Gan, officially joined deepmind as research scientist
MLGO:Google AI发布工业级编译器优化机器学习框架
Base64 encoding
Pytorch model trains practical skills and breaks through the bottleneck of speed
Substance Painter笔记:多显示器且多分辨率显示器时的设置
什么是云原生?这回终于能搞明白了!
In the field of software engineering, we have been doing scientific research for ten years!
2022 cloud consulting technology series high availability special sharing meeting
What is cloud primordial? This time, I can finally understand!
防火墙基础之服务器区的防护策略
Attribute keywords ondelete, private, readonly, required
Demis hassabis talks about alphafold's future goals
Source code analysis of ArrayList
MicTR01 Tester 振弦采集模塊開發套件使用說明
"July 2022" Wukong editor update record
FFmpeg----图片处理
Internal sort - insert sort
Docker deploy Oracle
缓冲区溢出保护