基于ASP.net的服装商城设计

news2025/1/21 9:34:06

目录
海秀衣城系统 2
1.概 述 2
1.1 网上购物的发展 2
1.2 三层架构技术简介 2
2. 系统总体设计 4
2.1 开发以及运行环境 4
2.2项目结构分析 4
2.3系统功能总体结构图 5
2.4系统功能结构分解图 5
3. 数据库设计 6
3.1 数据库设计 6
3.2 数据表 7
4. 模块设计 10
4.1 前端功能模块 10
4.2 后端功能模块 10
5. 界面设计等 11
5.1 前端模块 11
5.1.1 首页 11
5.1.2登录界面 11
5.1.3注册界面 12
5.1.4 购买商品 12
5.1.5 个人信息查询 13
5.1.6购物车查询 13
5.1.7支付界面 13
5.1.8订单查询 14
5.1.9账单查询 15
5.20 修改密码 15
5.2 后端模块 16
5.2.1 登录模块 16
5.2.2 后台首页 16
5.2.3 用户管理 17
5.2.4 商品添加 17
5.2.5 商品查询 18
5.2.6 商品更新 18
5.2.7 订单查询 18
5.2.8 发货处理 19
5.2.9 账单查询和撤单查询 19
2. 系统总体设计
2.1 开发以及运行环境
硬件平台:
CPU:2.2GHz
内存:4G
软件平台:
开发平台:Visual Studio 2015
数据库:SQL Server 2008 R2
浏览器:chome
2.2项目结构分析
该系统是一个比较完善的购物系统。主要是为买家和卖家而设计的,方便用户进行浏览商品以及卖家管理卖出商品。该系统主要包括后台管理模块、登录注册模块、购物车模块、个人信息管理模块。
登录注册模块:该模块功能主要包括用户的登录以及注册,适用于普通用户即买家。
购物车模块:用户添加商品到购物车,对购物车中的商品进行操作,包括对商品的支付或者删除商品以及商品列表的查询。
个人信息管理模块:包括个人信息的查询、购物车的查询、订单详细信息的查询(发货状态)、撤单记录、账单查询、以及修改密码。
后台管理模块:包含用户管理模块(主要有对用户的搜索查询,对其权限的更改:禁用,还原,升级)、商品管理模块(商品的添加包含着各种详细的信息,商品的查询可以根据价格区间、商品名称或者商品编号来查询,同时还提供了两种视图模式来展示给用户看)、订单查询(来提示卖家哪些商品没有发货)、发货处理(提供发货功能)、账单查询(买家的消费品的查询)、撤单查询(可以查看买家在购买途中所撤销的订单)、添加管理账户(需要最高管理员才能使用这个功能来添加后台管理员)。
在这里插入图片描述

2.3系统功能总体结构图

<%@ Page Language="C#" AutoEventWireup="true" CodeFile="Firstpage.aspx.cs" Inherits="_Default" %>

<%@ Register Src="../UserContorl/RuningPhotos.ascx" TagName="RuningPhotos" TagPrefix="uc1" %>
<%@ Register Src="../UserContorl/Top1.ascx" TagName="Top1" TagPrefix="uc2" %>
<%@ Register Src="../UserContorl/HotSearch.ascx" TagName="HotSearch" TagPrefix="uc4" %>
<%@ Register Src="../UserContorl/GoodSort.ascx" TagName="GoodSort" TagPrefix="uc5" %>
<%@ Register Src="../UserContorl/Footer.ascx" TagName="Footer" TagPrefix="uc6" %>
<%@ Register Src="../UserContorl/AdMenu1.ascx" TagName="AdMenu1" TagPrefix="uc7" %>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head runat="server">
    <title>HiShow -您永远的贴心衣柜!</title>
    <link href="../CSS/FirstPage.css" rel="stylesheet" type="text/css" />
    <script src="../JS/divlooks.js" type="text/javascript"></script>
    <style type="text/css"> 
        .style1
        {
            width: 85px;
            height: 44px;
        }
        .style3
        {
            height: 44px;
        }
        
        
        .style4
        {
            font-size: 25pt;
            text-align: center;
            font-family: 楷体;
            color: #990000;
        }
        .pricemark
        {
            height: 28px;
            windows: 90px;
            background-color: #F7F7F7;
            float: right;
            margin-right: 5px;
            
        }
    </style>
</head>
<body>
    <form id="form1" runat="server">
    <div id="Top">
        <uc2:Top1 ID="Top11" runat="server" />
    </div>
    <div id="Header">
        <div id="Header1">
            <asp:ImageButton ID="ImageButton1" runat="server" Height="132px" ImageUrl="~/Images/UI Images/HiShow3.gif"
                Width="243px" />
        </div>
        <div id="Header2">
            <div style="height: 30px; float: left; width: 745px;">
            </div>
            <div style="height: 108px; width: 80px; float: left">
            </div>
            <div id="Header3">
                <table style="width: 100%;">
                    <tr>
                        <td width="55" class="style3">
                        </td>
                        <td class="style3">
                            <asp:TextBox ID="TextBox1" runat="server" BorderStyle="None" Font-Size="Medium" Height="22px"
                                Style="margin-left: 6px; margin-bottom: 1px;" Width="400px"></asp:TextBox>
                        </td>
                        <td class="style3">
                            <asp:Button ID="Button1" runat="server" BackColor="Transparent" BorderStyle="None"
                                Height="38px" Style="margin-left: 5px" Width="80px" OnClick="Button1_Click" />
                        </td>
                        <td width="50" class="style1">
                            <%--<asp:LinkButton ID="LinkButton1" Style="margin-left: 8px" runat="server" ForeColor="#CC0066"
                                PostBackUrl="~/UI Forms/SuperSearchpage.aspx">高级搜索</asp:LinkButton>--%>
                        </td>
                    </tr>
                </table>
            </div>
            <div style="float: left; height: 58px; width: 633px;">
                <uc4:HotSearch ID="HotSearch1" runat="server" />
            </div>
        </div>
    </div>
    <div id="Nav">
    </div>
    <div id="Content">
        <div id="ContentLeft" style="margin: 0px;">
            <uc5:GoodSort ID="GoodSort1" runat="server" />
        </div>
        <div id="ContentMid" style="height: 200px">
           
            <uc1:RuningPhotos ID="RuningPhotos1" runat="server" /> 
        </div>
        <div id="ContentRight">
            <uc7:AdMenu1 ID="AdMenu12" runat="server" />
        </div>
        <div id="Mansview" style="margin-top: 8px; height: 700px; width: 1000px; float: left;
            border-style: solid; border-width: 1px; border-color: #CC0089;">
            <div id="Manph" style="height: 50px; width: 1000px; float: left;" class="style4">
                <strong>全城最畅销专区</strong></div>
            <asp:DataList ID="DataList1" RepeatColumns="4" Width="1000px" runat="server" RepeatDirection="Horizontal"
                OnItemCommand="DataList1_ItemCommand" 
                onselectedindexchanged="DataList1_SelectedIndexChanged">
                <ItemTemplate>
                    <div style="border: 1px solid #E1E1E1; height: 308px; width: 226px;">
                        <div style="height: 250px; width: 230px;">
                            <asp:ImageButton ID="ImageButton2" runat="server" Style="height: 280px; width: 226px"
                                ImageUrl='<%#"~/Images/Goods Images/"+Eval("ISBN")+".png" %>' CommandName="ImageButton"
                                OnClick="ImageButton2_Click" Height="247px" />
                        </div>
                        <div style="height: 30px; width: 230px; margin-bottom: 0px; float: left;">
                            <div class="pricemark">
                                <asp:Label ID="Label1" runat="server" Style="font-size: large; font-family: Arial;
                                    font-style: italic; font-weight: 700; color: #FF9933;" Text='<%# ""+Eval("Price")+".00" %>'></asp:Label>
                            </div>
                        </div>
                        <div style="height: 30px; width: 226px; background-color: #CCCCCC; float: left;">
                            <asp:Label ID="Label2" runat="server" Text='<%# Eval("Id") %>' Visible="False"></asp:Label>
                            <asp:Label ID="Label3" runat="server" Style="font-size: small; font-family: 黑体; color: #000000"
                                Text='<%# Eval("Name") %>'></asp:Label>
                        </div>
                    </div>
                </ItemTemplate>
            </asp:DataList>
        </div>
        <div id="Womenview" style="border: 1px solid #CC0089; margin-top: 5px; height: 778px;
            width: 1000px; float: left;">
            <div id="Div4" style="height: 50px; width: 1000px; float: left;" class="style4">
                <strong>全城人气专区</strong></div>
            <asp:DataList ID="DataList2" RepeatColumns="4" Width="1000px" runat="server" RepeatDirection="Horizontal"
                OnItemCommand="DataList1_ItemCommand" Height="681px">
                <ItemTemplate>
                    <div style="height: 316px; width: 230px;">
                        <div style="height: 250px; width: 230px;">
                            <asp:ImageButton ID="ImageButton2" runat="server" ImageUrl='<%#"~/Images/Goods Images/"+Eval("ISBN")+".png" %>'
                                BorderColor="#F7F7F7" BorderStyle="Solid" BorderWidth="2px" CommandName="ImageButton"
                                Height="273px" Width="230px" />
                        </div>
                        <div style="height: 30px; width: 230px; margin-bottom: 0px; float: left;">
                            <div style="height: 28px; width: 90px; background-color: #F7F7F7; float: right; margin-right: 5px;">
                                <asp:Label ID="Label1" runat="server" Style="font-size: large; font-family: Arial;
                                    font-style: italic; font-weight: 700; color: #CC0099;" Text='<%# ""+Eval("Price")+".00" %>'></asp:Label>
                            </div>
                        </div>
                        <div style="border: 2px solid #F7F7F7; height: 45px; width: 230px; background-color: #CAE7E8;
                            float: left;">
                            <asp:Label ID="Label2" runat="server" Text='<%# Eval("Id") %>' Visible="False"></asp:Label>
                            <asp:Label ID="Label3" runat="server" Style="font-size: small; font-family: 微软雅黑;
                                color: #333333" Text='<%# Eval("Name") %>'></asp:Label>
                        </div>
                    </div>
                </ItemTemplate>
            </asp:DataList>
        </div>
        <div id="Childrenview" style="border: 1px solid #CC0089; margin-top: 5px; height: 749px;
            width: 1000px; float: left;">
            <div id="Div5" style="height: 50px; width: 1000px; float: left;" class="style4">
                <strong>全城最奢华专区</strong></div>
            <asp:DataList ID="DataList3" RepeatColumns="4" Width="1000px" runat="server" RepeatDirection="Horizontal"
                OnItemCommand="DataList1_ItemCommand" Height="681px">
                <ItemTemplate>
                    <div style="height: 316px; width: 230px;">
                        <div style="height: 250px; width: 230px;">
                            <asp:ImageButton ID="ImageButton2" runat="server" ImageUrl='<%#"~/Images/Goods Images/"+Eval("ISBN")+".png" %>'
                                BorderColor="#F7F7F7" BorderStyle="Solid" BorderWidth="2px" CommandName="ImageButton"
                                Height="273px" Width="230px" />
                        </div>
                        <div style="height: 30px; width: 230px; margin-bottom: 0px; float: left;">
                            <div style="height: 28px; width: 95px; background-color: #F7F7F7; float: right; margin-right: 5px;">
                                <asp:Label ID="Label1" runat="server" Style="font-size: large; font-family: Arial;
                                    font-style: italic; font-weight: 700; color: #CC0099;" Text='<%# ""+Eval("Price")+".00" %>'></asp:Label>
                            </div>
                        </div>
                        <div style="border: 2px solid #F7F7F7; height: 45px; width: 230px; background-color: #CAE7E8;
                            float: left;">
                            <asp:Label ID="Label2" runat="server" Text='<%# Eval("Id") %>' Visible="False"></asp:Label>
                            <asp:Label ID="Label3" runat="server" Style="font-size: small; font-family: 微软雅黑;
                                color: #333333" Text='<%# Eval("Name") %>'></asp:Label>
                        </div>
                    </div>
                </ItemTemplate>
            </asp:DataList>
        </div>
        <div id="Div1" style="margin-top: 8px; height: 700px; width: 1000px; float: left;
            border-style: solid; border-width: 1px; border-color: #CC0089;">
            <div id="Div6" style="height: 50px; width: 1000px; float: left;" class="style4">
                男士经典<strong>专区</strong></div>
            <asp:DataList ID="DataList4" RepeatColumns="4" Width="1000px" runat="server" RepeatDirection="Horizontal"
                OnItemCommand="DataList1_ItemCommand">
                <ItemTemplate>
                    <div style="border: 1px solid #E1E1E1; height: 308px; width: 226px;">
                        <div style="height: 250px; width: 230px;">
                            <asp:ImageButton ID="ImageButton2" runat="server" Style="height: 280px; width: 226px"
                                ImageUrl='<%#"~/Images/Goods Images/"+Eval("ISBN")+".png" %>' CommandName="ImageButton"
                                OnClick="ImageButton2_Click" Height="247px" />
                        </div>
                        <div style="height: 30px; width: 230px; margin-bottom: 0px; float: left;">
                            <div id="Pricemark" style="height: 28px; windows: 90px; background-color: #F7F7F7;
                                float: right; margin-right: 5px;">
                                <asp:Label ID="Label1" runat="server" Style="font-size: large; font-family: Arial;
                                    font-style: italic; font-weight: 700; color: #FF9933;" Text='<%# ""+Eval("Price")+".00" %>'></asp:Label>
                            </div>
                        </div>
                        <div style="height: 30px; width: 226px; background-color: #CCCCCC; float: left;">
                            <asp:Label ID="Label2" runat="server" Text='<%# Eval("Id") %>' Visible="False"></asp:Label>
                            <asp:Label ID="Label3" runat="server" Style="font-size: small; font-family: 黑体; color: #000000"
                                Text='<%# Eval("Name") %>'></asp:Label>
                        </div>
                    </div>
                </ItemTemplate>
            </asp:DataList>
        </div>
        <div id="Div2" style="border: 1px solid #CC0089; margin-top: 5px; height: 741px;
            width: 1000px; float: left;">
            <div id="Div7" style="height: 50px; width: 1000px; float: left;" class="style4">
                女士<strong>浪漫专区</strong></div>
            <asp:DataList ID="DataList5" RepeatColumns="4" Width="1000px" runat="server" RepeatDirection="Horizontal"
                OnItemCommand="DataList1_ItemCommand" Height="630px">
                <ItemTemplate>
                    <div style="height: 316px; width: 230px;">
                        <div style="height: 250px; width: 230px;">
                            <asp:ImageButton ID="ImageButton2" runat="server" ImageUrl='<%#"~/Images/Goods Images/"+Eval("ISBN")+".png" %>'
                                BorderColor="#F7F7F7" BorderStyle="Solid" BorderWidth="2px" CommandName="ImageButton"
                                Height="273px" Width="230px" />
                        </div>
                        <div style="height: 30px; width: 230px; margin-bottom: 0px; float: left;">
                            <div style="height: 28px; width: 90px; background-color: #F7F7F7; float: right; margin-right: 5px;">
                                <asp:Label ID="Label1" runat="server" Style="font-size: large; font-family: Arial;
                                    font-style: italic; font-weight: 700; color: #CC0099;" Text='<%# ""+Eval("Price")+".00" %>'></asp:Label>
                            </div>
                        </div>
                        <div style="border: 2px solid #F7F7F7; height: 45px; width: 230px; background-color: #CAE7E8;
                            float: left;">
                            <asp:Label ID="Label2" runat="server" Text='<%# Eval("Id") %>' Visible="False"></asp:Label>
                            <asp:Label ID="Label3" runat="server" Style="font-size: small; font-family: 微软雅黑;
                                color: #333333" Text='<%# Eval("Name") %>'></asp:Label>
                        </div>
                    </div>
                </ItemTemplate>
            </asp:DataList>
            <br />
        </div>
        <div id="Div3" style="border: 1px solid #CC0089; margin-top: 5px; height: 797px;
            width: 1000px; float: left;">
            <div id="Div8" style="height: 50px; width: 1000px; float: left;" class="style4">
                儿童可爱<strong>专区</strong></div>
            <asp:DataList ID="DataList6" RepeatColumns="4" Width="1000px" runat="server" RepeatDirection="Horizontal"
                OnItemCommand="DataList1_ItemCommand" Height="681px">
                <ItemTemplate>
                    <div style="height: 316px; width: 230px;">
                        <div style="height: 250px; width: 230px;">
                            <asp:ImageButton ID="ImageButton2" runat="server" ImageUrl='<%#"~/Images/Goods Images/"+Eval("ISBN")+".png" %>'
                                BorderColor="#F7F7F7" BorderStyle="Solid" BorderWidth="2px" CommandName="ImageButton"
                                Height="273px" Width="230px" />
                        </div>
                        <div style="height: 30px; width: 230px; margin-bottom: 0px; float: left;">
                            <div style="height: 28px; width: 90px; background-color: #F7F7F7; float: right; margin-right: 5px;">
                                <asp:Label ID="Label1" runat="server" Style="font-size: large; font-family: Arial;
                                    font-style: italic; font-weight: 700; color: #CC0099;" Text='<%# ""+Eval("Price")+".00" %>'></asp:Label>
                            </div>
                        </div>
                        <div style="border: 2px solid #F7F7F7; height: 45px; width: 230px; background-color: #CAE7E8;
                            float: left;">
                            <asp:Label ID="Label2" runat="server" Text='<%# Eval("Id") %>' Visible="False"></asp:Label>
                            <asp:Label ID="Label3" runat="server" Style="font-size: small; font-family: 微软雅黑;
                                color: #333333" Text='<%# Eval("Name") %>'></asp:Label>
                        </div>
                    </div>
                </ItemTemplate>
            </asp:DataList>
        </div>
        <div style="margin-top: 5px; height: 30px; width: 1000px; float: left">
        </div>
    </div>
    <div id="Footer">
        <uc6:Footer ID="Footer1" runat="server" />
    </div>
    </form>
</body>
</html>

在这里插入图片描述
在这里插入图片描述
在这里插入图片描述
在这里插入图片描述
在这里插入图片描述
在这里插入图片描述
在这里插入图片描述
在这里插入图片描述
在这里插入图片描述
在这里插入图片描述
在这里插入图片描述
在这里插入图片描述
在这里插入图片描述
在这里插入图片描述
在这里插入图片描述
在这里插入图片描述
在这里插入图片描述
在这里插入图片描述
在这里插入图片描述
在这里插入图片描述
在这里插入图片描述

本文来自互联网用户投稿,该文观点仅代表作者本人,不代表本站立场。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如若转载,请注明出处:http://www.coloradmin.cn/o/43779.html

如若内容造成侵权/违法违规/事实不符,请联系多彩编程网进行投诉反馈,一经查实,立即删除!

相关文章

SpringCloud微服务实践之七 网关(Gateway)

一、网关基本概念 &#xff08;一&#xff09;网关功能 身份认证和权限校验服务路由、负载均衡请求限流 &#xff08;二&#xff09;网关技术选型 SpringCloud提供了两个组件都可以实现网关功能&#xff1a; gatewayzuul 其中&#xff0c;Zuul是基于Servlet的实现&#xff…

SQL注入漏洞 | 数字型

文章目录前言MySQL 数字型前言 SQL注入漏洞 | iwebsec MySQL 数字型 页面观察&#xff1a;测试看回显 注入点判断&#xff1a;发现有sql注入漏洞 AND 可在 where 子语句中把两个或多个条件结合起来。如果第一个条件和第二个条件都成立&#xff0c;则 AND 运算符显示一条记录…

HBuilder X实现tabBar底部导航记录

首先&#xff0c;打开uniapp官网&#xff0c;找到tarbar官方文档&#xff0c;仔细阅读&#xff0c;具体位置如下&#xff0c;全局配置下面的pages.json页面路由里面找到tabBar&#xff0c;点击查看&#xff1a; 重点注意这两句话&#xff1a; 找到文档我们就可以按照上面的提示…

迭代器模式(Iterator)

参考&#xff1a; 迭代器设计模式 (refactoringguru.cn) [design-patterns-cpp/Iterator.cpp at master JakubVojvoda/design-patterns-cpp GitHub 文章目录一、什么是迭代器模式&#xff1f;二、实现三、优缺点优点缺点一、什么是迭代器模式&#xff1f; 提供一种方法&…

QFont-使用外部字体文件的问题

我们程序里面定义了某个结构体(这里简单描述为AStruct)&#xff0c;AStruct包含了一个QFont 类型的成员变量&#xff1a; struct AStruct {QFont ft; }; 在具体业务上&#xff0c;AStruct中的QFont会被传递给QPainter去绘制文本。 保存工程/加载工程时时&#xff0…

用Python写个爬虫,赚了!

前言 编程语言排行榜(Tiobe)发布了11月新榜&#xff0c;Python仍领先Java和C&#xff0c;在全球众多的老牌编程语言中&#xff0c;以其他对手无法企及的极高份额稳居榜单第一位。 榜单数据是客观真实的&#xff0c;当下Python的使用者越来越多&#xff0c;已经远超使用其他十…

【Linux初阶】认识冯诺依曼结构

&#x1f31f;hello&#xff0c;各位读者大大们你们好呀&#x1f31f; &#x1f36d;&#x1f36d;系列专栏&#xff1a;【Linux初阶】 ✒️✒️本篇内容&#xff1a;计算机的冯诺依曼组成结构、冯诺依曼结构的数据交换特性&#xff0c;以宏观视角理解冯诺依曼下的网络数据传输…

Spring Cloud Alibaba 容器化部署最佳实践 | 本地部署版本详解

环境声明 在运行本地示例之前&#xff0c;需要保证本机具备以下的基础环境&#xff0c;如果您的本地没有当前的环境&#xff0c;下面会一步步进行搭建&#xff0c;演示搭建过程。 Nacos 服务端Seata 服务端RocketMQ 服务端MySQL 服务端 可在国内https://gitee.com/mirrors/S…

低代码在离散制造业的实践

大家上午好&#xff0c;非常感谢明道云给我这个机会&#xff0c;来展示一下这个上海电气在明道云上面的应用。我的题目是《低代码在离散制造业的实践》。 引入明道云的背景 首先介绍一下我们电气数字科技有限公司。它是在2018年的时候&#xff0c;上海电气集团内部成立的数科…

捷码全新快速表单功能解读

在最近的更新中&#xff0c;捷码迎来了比较多的功能上新&#xff0c;其中最受大家关注的是全新的表单功能。无论是从功能丰富度还是操作便利性上都做了大量设计。本文将从重点功能设置操作流程上进行演示说明。 表单控件和关联 ——1对1、1对n、n对n 支持多场景 首先是表单控…

航空货运数据挖掘那些事|航班换季

目录前言航班换季航班换季对航空货运业务有哪些影响参考文献前言 就在上个月月底&#xff0c;即2022年10月29日到2022年10月30日&#xff0c;中国民航完成了2022年的夏秋季航季到2022/23年冬春航季切换工作&#xff0c;俗称航班换季&#xff0c;那么何为航班换季呢&#xff0c…

流媒体传输 - RTMP 协议

RTMP 是 Real Time Messaging Protocol&#xff08;实时消息传输协议&#xff09;的首字母缩写。它是由 Adobe 公司提出的一种应用层的协议&#xff0c;用来解决多媒体数据传输流的多路复用&#xff08;Multiplexing&#xff09;和分包&#xff08;packetizing&#xff09;的问…

氨基苯酚/多巴胺仿生修饰碳纳米管/α-氧化铝/ CNTs-Ag纳米复合材料

小编下面和大家来看间氨基苯酚/多巴胺仿生修饰碳纳米管/α-氧化铝/ CNTs-Ag纳米复合材料的制备&#xff01; 多巴胺仿生修饰材料的研究&#xff1a; 通过表面聚多巴胺层与银离子的螯合作用,通过表面聚多巴胺与银离子的螯合作用,利用葡萄糖作还原剂,在聚多巴胺修饰的聚酯纤维表…

HarmonyOS应用API手势方法-PanGesture

描述&#xff1a;用于触发拖动手势事件&#xff0c;滑动的最小距离为5vp时拖动手势识别成功。 Api&#xff1a;从API Version 7开始支持 接口&#xff1a; PanGesture(value?: { fingers?: number; direction?: PanDirection; distance?: number } | PanGestureOptions)…

IT6225/IT6225B Type-C转HDMI 4K60设计方案

ITE&#xff08;新联阳&#xff09;的IT6225/IT6225B&#xff0c;是一款Type-C转HDMI 460K的视频转换芯片 通过USB Type-C连接器将DP RX视频信号转换为HDMI/DVI TX视频信号。DP信号转接只用2lane&#xff0c;另外2lane可以输出USB 3.0/3.1信号&#xff0c;同时兼容PD 3.0&…

Zabbix自动监控windows端口(主动监控方式)

第一部分&#xff1a;服务器上的操作&#xff08;脚本&配置&#xff09; 创建脚本文件 在客户端新建discovertcpport.bat文件&#xff0c;放在C:\Program Files\Zabbix Agent目录中&#xff0c;内容如下&#xff1a; echo off echo { echo "data":[ f…

[附源码]计算机毕业设计springboot创意摄影交流平台

项目运行 环境配置&#xff1a; Jdk1.8 Tomcat7.0 Mysql HBuilderX&#xff08;Webstorm也行&#xff09; Eclispe&#xff08;IntelliJ IDEA,Eclispe,MyEclispe,Sts都支持&#xff09;。 项目技术&#xff1a; SSM mybatis Maven Vue 等等组成&#xff0c;B/S模式 M…

python面向对象进阶-继承、多态

继承 python面向对象的继承指的是多个类之间的所属关系&#xff0c;及子类默认继承父类的所有属性和方法#父类A class A(object):def __init__(self):self.num 1#定义成员函数&#xff1a;方法def info_print(self):print(self.num)#子类&#xff0c;继承父类 class B(A):pass…

PaddlePaddle自然语言处理总结

11月28日 week14 周一 910节 物联201 2008070101 本文总结&#xff1a; 1.介绍词向量引入对自然语言处理有着至关重要的作用&#xff1b; 2.介绍了word2vec算法&#xff1b; 3.介绍CBOW算法的实现&#xff1b; 4.介绍Skip-Gram算法的实现。 基本流程&#xff1a; 1.数据预处理&…

​企业该如何做好源代码防泄密工作

​企业该如何做好源代码防泄密工作 随着企业信息化发展的日益增长&#xff0c;软件行业厂商之间的竞争也愈加白热化&#xff0c;加上国内对知识产权的不够重视、山寨模仿产品的横行。保护源代码、保证企业的核心竞争力&#xff0c;成为众多软件研发企业的第一要务。那么企业应…