当前位置:网站首页>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
边栏推荐
- Xiaomi's path of chip self-development
- Simple steps for modifying IP of sigang electronic scale
- STM32CubeMX,68套组件,遵循10条开源协议
- 拼多多败诉,砍价始终差0.9%一案宣判;微信内测同一手机号可注册两个账号功能;2022年度菲尔兹奖公布|极客头条...
- 大厂做开源的五大痛点
- Mlgo: Google AI releases industrial compiler optimized machine learning framework
- JSON解析实例(Qt含源码)
- Cascading update with Oracle trigger
- 寺岗电子称修改IP简易步骤
- Instructions for mictr01 tester vibrating string acquisition module development kit
猜你喜欢
MicTR01 Tester 振弦采集模块开发套件使用说明
内部排序——插入排序
13 ux/ui/ue best creative inspiration websites in 2022
JS get the current time, month, day, year, and the uniapp location applet opens the map to select the location
Infinite innovation in cloud "vision" | the 2022 Alibaba cloud live summit was officially launched
Substance painter notes: settings for multi display and multi-resolution displays
2022PAGC 金帆奖 | 融云荣膺「年度杰出产品技术服务商」
Navigation — 这么好用的导航框架你确定不来看看?
Stm32cubemx, 68 sets of components, following 10 open source protocols
What is cloud primordial? This time, I can finally understand!
随机推荐
LeetCode每日一题(636. Exclusive Time of Functions)
Differences between cookies and sessions
How bad can a programmer be? Nima, they are all talents
Source code analysis of ArrayList
Navigation — 这么好用的导航框架你确定不来看看?
寺岗电子称修改IP简易步骤
CVPR2022 | 医学图像分析中基于频率注入的后门攻击
Pandora IOT development board learning (HAL Library) - Experiment 12 RTC real-time clock experiment (learning notes)
C 6.0 language specification approved
Beginner JSP
【服务器数据恢复】某品牌StorageWorks服务器raid数据恢复案例
Webrtc audio anti weak network technology (Part 1)
Instructions d'utilisation de la trousse de développement du module d'acquisition d'accord du testeur mictr01
Decrypt the three dimensional design of the game
C# 6.0 语言规范获批
PLC:自动纠正数据集噪声,来洗洗数据集吧 | ICLR 2021 Spotlight
"July 2022" Wukong editor update record
数据湖(九):Iceberg特点详述和数据类型
激光雷达lidar知识点滴
Shengteng experience officer Episode 5 notes I