<!--#include File="../Conndb.asp"--> 5
<!--#includeFile="../Conndb.asp"--><!--#includefile="isAdmin.asp"--><html><head><meta...
<!--#include File="../Conndb.asp"-->
<!--#include file="isAdmin.asp"-->
<html>
<head>
<meta http-equiv="Content-Language" content="zh-cn">
<meta http-equiv="Content-Type" content="text/html; charset=gb2312">
<meta name="GENERATOR" content="Microsoft FrontPage 4.0">
<meta name="ProgId" content="FrontPage.Editor.Document">
<title>站点管理</title>
<base target="main">
</head>
<body bgcolor="#FFFFCC">
<div align="center"><b><font color="#CC0000" face="隶书" size="4">网上商城管理</font></b><br>
<hr size="1" color="#800080"></div>
<table border="0" width="80%" align="center" height="402">
<tr>
<td width="100%" style="font-size: 9pt" height="14"><font color="#000080">公告管理</font></td>
</tr>
<tr>
<td width="100%" style="font-size: 9pt" align="center" height="14"><font color="#0000FF"><a href="BoardList.asp" target="main">公告列表</a></font></td>
</tr>
<tr>
<td width="100%" style="font-size: 9pt" align="center" height="14"></td>
</tr>
<tr>
<td width="100%" style="font-size: 9pt" height="14"><font color="#000080">商品管理</font></td>
</tr>
<tr>
<td width="100%" style="font-size: 9pt" align="center" height="14"><font color="#0000FF"><a href="GoodsType.asp" target="main">类别管理</a></font></td>
</tr>
<tr>
<td width="100%" style="font-size: 9pt" align="center" height="14"><font color="#0000FF"><a href="GoodsList.asp" target="main">商品列表</a></font></td>
</tr>
<tr>
<td width="100%" style="font-size: 9pt" height="14"></td>
</tr>
麻烦各位高手给解释以下上面的代码意思 展开
<!--#include file="isAdmin.asp"-->
<html>
<head>
<meta http-equiv="Content-Language" content="zh-cn">
<meta http-equiv="Content-Type" content="text/html; charset=gb2312">
<meta name="GENERATOR" content="Microsoft FrontPage 4.0">
<meta name="ProgId" content="FrontPage.Editor.Document">
<title>站点管理</title>
<base target="main">
</head>
<body bgcolor="#FFFFCC">
<div align="center"><b><font color="#CC0000" face="隶书" size="4">网上商城管理</font></b><br>
<hr size="1" color="#800080"></div>
<table border="0" width="80%" align="center" height="402">
<tr>
<td width="100%" style="font-size: 9pt" height="14"><font color="#000080">公告管理</font></td>
</tr>
<tr>
<td width="100%" style="font-size: 9pt" align="center" height="14"><font color="#0000FF"><a href="BoardList.asp" target="main">公告列表</a></font></td>
</tr>
<tr>
<td width="100%" style="font-size: 9pt" align="center" height="14"></td>
</tr>
<tr>
<td width="100%" style="font-size: 9pt" height="14"><font color="#000080">商品管理</font></td>
</tr>
<tr>
<td width="100%" style="font-size: 9pt" align="center" height="14"><font color="#0000FF"><a href="GoodsType.asp" target="main">类别管理</a></font></td>
</tr>
<tr>
<td width="100%" style="font-size: 9pt" align="center" height="14"><font color="#0000FF"><a href="GoodsList.asp" target="main">商品列表</a></font></td>
</tr>
<tr>
<td width="100%" style="font-size: 9pt" height="14"></td>
</tr>
麻烦各位高手给解释以下上面的代码意思 展开
展开全部
<!--#include File="../Conndb.asp"-->'//调用上一级目录Conndb.asp文件内容(看他的文件名里面是连接数据库的字符串简单的意思就是打开数据库)
<!--#include file="isAdmin.asp"-->
'//调用当前目录isAdmin.asp文件内容(看他的文件名里面是管理权限的内容就是禁止非法进入)
<html>'//HTML语言表示HTML语言开始的意思
<head> '//HTML语言文件头,形象的说就等于人的脑袋
<meta http-equiv="Content-Language" content="zh-cn">
<meta http-equiv="Content-Type" content="text/html; charset=gb2312"> '//GB2312就是简体中文
<meta name="GENERATOR" content="Microsoft FrontPage 4.0">
<meta name="ProgId" content="FrontPage.Editor.Document">
<title>站点管理</title> '//文挡名称在IE浏览器上部显示
<base target="main"> '//BASE编码
</head> '//文件头结束
<body bgcolor="#FFFFCC">'//文当主体开始,也就是说人的躯干了
<div align="center"><b><font color="#CC0000" face="隶书" size="4">网上商城管理</font></b><br>
<hr size="1" color="#800080"></div> '//一个层文件,<b>表示字体加粗<font color="#CC0000" face="隶书" size="4">表示字体样式属性分别是颜色,字体,大小
<table border="0" width="80%" align="center" height="402"> '//表格开始
<tr> '//行
<td width="100%" style="font-size: 9pt" height="14"><font color="#000080">公告管理</font></td> '//列
</tr> '//行结束
<tr> '//行
<td width="100%" style="font-size: 9pt" align="center" height="14"><font color="#0000FF"><a href="BoardList.asp" target="main">公告列表</a></font></td>'//<a>表示超连,地址是:BoardList.asp,在名为 main中显示出来
</tr> '//行结束
<tr>
<td width="100%" style="font-size: 9pt" align="center" height="14"></td>
</tr>
<tr>
<td width="100%" style="font-size: 9pt" height="14"><font color="#000080">商品管理</font></td>
</tr>
<tr>
<td width="100%" style="font-size: 9pt" align="center" height="14"><font color="#0000FF"><a href="GoodsType.asp" target="main">类别管理</a></font></td>
</tr>
<tr>
<td width="100%" style="font-size: 9pt" align="center" height="14"><font color="#0000FF"><a href="GoodsList.asp" target="main">商品列表</a></font></td>
</tr>
<tr>
<td width="100%" style="font-size: 9pt" height="14"></td>
</tr>
这段代码差不多就是这样解释了,
<!--#include file="isAdmin.asp"-->
'//调用当前目录isAdmin.asp文件内容(看他的文件名里面是管理权限的内容就是禁止非法进入)
<html>'//HTML语言表示HTML语言开始的意思
<head> '//HTML语言文件头,形象的说就等于人的脑袋
<meta http-equiv="Content-Language" content="zh-cn">
<meta http-equiv="Content-Type" content="text/html; charset=gb2312"> '//GB2312就是简体中文
<meta name="GENERATOR" content="Microsoft FrontPage 4.0">
<meta name="ProgId" content="FrontPage.Editor.Document">
<title>站点管理</title> '//文挡名称在IE浏览器上部显示
<base target="main"> '//BASE编码
</head> '//文件头结束
<body bgcolor="#FFFFCC">'//文当主体开始,也就是说人的躯干了
<div align="center"><b><font color="#CC0000" face="隶书" size="4">网上商城管理</font></b><br>
<hr size="1" color="#800080"></div> '//一个层文件,<b>表示字体加粗<font color="#CC0000" face="隶书" size="4">表示字体样式属性分别是颜色,字体,大小
<table border="0" width="80%" align="center" height="402"> '//表格开始
<tr> '//行
<td width="100%" style="font-size: 9pt" height="14"><font color="#000080">公告管理</font></td> '//列
</tr> '//行结束
<tr> '//行
<td width="100%" style="font-size: 9pt" align="center" height="14"><font color="#0000FF"><a href="BoardList.asp" target="main">公告列表</a></font></td>'//<a>表示超连,地址是:BoardList.asp,在名为 main中显示出来
</tr> '//行结束
<tr>
<td width="100%" style="font-size: 9pt" align="center" height="14"></td>
</tr>
<tr>
<td width="100%" style="font-size: 9pt" height="14"><font color="#000080">商品管理</font></td>
</tr>
<tr>
<td width="100%" style="font-size: 9pt" align="center" height="14"><font color="#0000FF"><a href="GoodsType.asp" target="main">类别管理</a></font></td>
</tr>
<tr>
<td width="100%" style="font-size: 9pt" align="center" height="14"><font color="#0000FF"><a href="GoodsList.asp" target="main">商品列表</a></font></td>
</tr>
<tr>
<td width="100%" style="font-size: 9pt" height="14"></td>
</tr>
这段代码差不多就是这样解释了,
Storm代理
2023-08-29 广告
2023-08-29 广告
"StormProxies是全球大数据IP资源服务商,其住宅代理网络由真实的家庭住宅IP组成,可为企业或个人提供满足各种场景的代理产品。点击免费测试(注册即送1G流量)StormProxies有哪些优势?1、IP+端口提取形式,不限带宽,I...
点击进入详情页
本回答由Storm代理提供
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询