物流管理信息系统设计报告

合集下载
  1. 1、下载文档前请自行甄别文档内容的完整性,平台不提供额外的编辑、内容补充、找答案等附加服务。
  2. 2、"仅部分预览"的文档,不可在线预览部分如存在完整性等问题,可反馈申请退款(可完整预览的文档不适用该条件!)。
  3. 3、如文档侵犯您的权益,请联系客服反馈,我们会尽快为您处理(人工客服工作时间:9:00-18:30)。
<tr><td width="457" align="center" background="Admin_01.jpg"><font size="5" color="green" face="隶书">电子商务物流管理信息系统</font></td></tr>
<tr><td align="center" background="Admin_01.jpg"><font size="5" color="green" face="隶书">基本信息管理</font></td></tr>
<input name="username" type="text" id="username" size="18" class="login">
</font></td>
<td width="32%" rowspan="2" align="center"><input type="image" name="Submit" value="提交" src="Admin_03.jpg" width="126" height="27" onClick="document.form1.submit()"> </td></tr>
(1)登陆界面截图
(2)代码
1.admin_index
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=gb2312">
<title>登陆界面</title>
</head>
<body leftmargin="1" topmargin="0" background="background.jpg">
<td><a href="update_form1.asp?id=<%=rs("id")%>">更新</a></td>
</tr>
<%
rs.MoveNext
Loop
%>
</table>
<a href="index.asp"><font size="4" face="隶书">返回</font></a>
</body>
<table width="100%" height="307" border="0" cellpadding="0" cellspacing="1">
<tr> <td height="305"> <table width="457" border="0" align="center" cellpadding="0" cellspacing="0"></td></tr>
else
session("adminname")=Username
session("adminpwd")=Password
response.Redirect("index.asp")
rs.close
set rs=nothing
end if
end if
%>
二、主界面•
该部分的主要功能是连接查询界面。
(1)界面截图•
物流管理系统设计报告
电子商务物流管理信息系统
对于物流管理信息系统,其包括以下这些模块:基本信息模块、订单管理模块、运输管理模块、仓库管理模块、客户关系管理模块、财务管理模块、业绩管理模块。这几大模块分别实现了不同的功能,此次我们小组编写代码实现了基本信息管理模块并对其他各模块进行了设计分析。
基本信息管理模块
(2)代码
1.index.asp
<html>
<body background="background1.jpg">
<h2 align="center">基本信息查询与操作</h2>
<table border="1" width="100%" >
<tr bgcolor="#E0E0E0">
<th>项目</th><th>查询</th></tr>
if code="" then
response.write("<script language='javascript'>alert('请输入验证码');history.go(-1)</script>")
response.end
enቤተ መጻሕፍቲ ባይዱ if
if code<>CStr(session("validateCode")) then
sql="select * from admin where name='"&Username&"' and password='"&Password&"'"
rs.open sql,conn,1,1
if rs.eof then
rs.close
set rs=nothing
response.write("<script language='javascript'>alert('用户名或密码错误');history.go(-1)</script>")
</tr>
<tr>
<td><font size="4" face="隶书">货主资料</font></td>
<td><a href="select3.asp">查询</a></td>
</tr>
<tr>
<td><font size="4" face="隶书">仓库资料</font></td>
<td><a href="select4.asp">查询</a></td>
<%
dim action,rs,sql,Username,Password,code
action=request.QueryString("action")
if action="login" then
Username=request.Form("username")
Password=md5(request.Form("password"))
</tr>
<tr>
<td><font size="4" face="隶书">运输资料</font></td>
<td><a href="select5.asp">查询</a></td>
</tr>
<tr>
<td><font size="4" face="隶书">报表</font></td>
<td><a href="select6.asp">查询</a></td>
</form>
</table></td></tr>
</table></td></tr>
</table>
</body>
</html>
2.admin_check
<%@LANGUAGE="VBSCRIPT" CODEPAGE="936"%>
<!--#include file="conn.asp"-->
<!--#include file="md5.asp"-->
<tr><td height="25"><font size="2"><strong><font color="#FFFFFF">密 码:</font></strong></font></td>
<td height="25"><font size="2">
<input name="password" type="password" id="password" size="18" class="login></font></td></tr>
<tr><td height="101" background="Admin_02.jpg"> <table width="337" border="0" align="center" cellpadding="0" cellspacing="1">
<form name="form1" method="post"action="admin_check.asp?action=login">
</tr>
</table>
</body>
</html>
三、查询功能
(1)界面截图
(2)代码
1.select1.asp
<html>
<body background="background1.jpg">
<h2 align="center">区域资料</h2>
<%
Dim conn,strConn
Set conn=Server.CreateObject("ADODB.Connection")
Set rs=conn.Execute(strSql)
%>
<td><a href="insert1.asp">插入数据</a></td>
<table border="1" width="100%" >
<tr bgcolor="#E0E0E0">
<th>城市</th><th>所属区域</th><th>城市负责人</th><th>区域负责人</th><th>删除</th><th>更新</th>
response.write("<script language='javascript'>alert('你输入的验证码不正确,请重新输入');history.go(-1)</script>")
response.end
end if
set rs=server.CreateObject("adodb.recordset")
该模块由ASP为搭载,通过ASP连接数据库来实现对基本信息的管理。该模块主要的功能包括登录页面,基本信息查询,信息插入,信息修改,信息删除等功能。下面是各个功能的简单介绍(包含代码)。
一、登陆界面
该部分包括用户名,密码以及验证码的输入。用户名和密码将保存在后台数据库当中,该部分同时包含了验证码的功能。一共包含两个ASP文件,一个是登陆界面的设计,另一个用于连接数据库以及判断用户名,密码以及验证码。
<tr><td width="22%" height="25"><font size="2"><strong><font color="#FFFFFF">验证码:</font></strong></font></td>
<td> <input name="txt_check" type="text" size=6 maxlength=4 class="input"> <img src="getcode.asp " alt= "验证码,看不清楚?请点击刷新验证码" height="10"style="cursor: pointer;" onClick="this.src='getcode.asp?t='+(new Date().getTime());" ></td></tr>
if Username="" or Password="" then
response.write("<script language='javascript'>alert('用户名或密码不能为空');history.go(-1)</script>")
response.end
end if
code=replace(trim(Request.form("txt_check")),"'","")
相关文档
最新文档