当前位置:网站首页>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
边栏推荐
- 时空可变形卷积用于压缩视频质量增强(STDF)
- Es log error appreciation -trying to create too many buckets
- KITTI数据集简介与使用
- Simple use of websocket
- 激光雷达lidar知识点滴
- The method of parsing PHP to jump out of the loop and the difference between continue, break and exit
- Substance Painter筆記:多顯示器且多分辨率顯示器時的設置
- WebRTC 音频抗弱网技术(上)
- JS image to Base64
- Demis hassabis talks about alphafold's future goals
猜你喜欢
数据湖(九):Iceberg特点详述和数据类型
#yyds干货盘点# 解决名企真题:交叉线
KITTI数据集简介与使用
《微信小程序-进阶篇》组件封装-Icon组件的实现(一)
Equipment failure prediction machine failure early warning mechanical equipment vibration monitoring machine failure early warning CNC vibration wireless monitoring equipment abnormal early warning
因员工将密码设为“123456”,AMD 被盗 450Gb 数据?
OAuth 2.0 + JWT protect API security
WebRTC 音频抗弱网技术(上)
C# 6.0 语言规范获批
【历史上的今天】7 月 7 日:C# 发布;Chrome OS 问世;《仙剑奇侠传》发行
随机推荐
LeetCode 648. Word replacement
一文读懂数仓中的pg_stat
《微信小程序-进阶篇》组件封装-Icon组件的实现(一)
PAG体验:十分钟完成AE动效部署上线各平台!
6. Electron borderless window and transparent window lock mode setting window icon
Stm32cubemx, 68 sets of components, following 10 open source protocols
Cascading update with Oracle trigger
解析PHP跳出循环的方法以及continue、break、exit的区别介绍
KITTI数据集简介与使用
Summary on adding content of background dynamic template builder usage
MicTR01 Tester 振弦采集模块开发套件使用说明
激光雷達lidar知識點滴
PLC:自动纠正数据集噪声,来洗洗数据集吧 | ICLR 2021 Spotlight
Because the employee set the password to "123456", amd stolen 450gb data?
Bill Gates posted his resume 48 years ago: "it's not as good-looking as yours."
Huawei cloud database DDS products are deeply enabled
Substance painter notes: settings for multi display and multi-resolution displays
JS image to Base64
一个程序员的水平能差到什么程度?尼玛,都是人才呀...
WebRTC 音频抗弱网技术(上)