⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 showsubs.asp

📁 订单管理系统 一、管理员可以设置和修改物品的图片资料 二、修改了级别与积分关系的部分 三、修改了增加用户审核后新用户注册时的错误 四、管理员可以设置用户所有的支付方式和页面的反馈信
💻 ASP
字号:
<!--#include file="inc/userconn.inc"--><html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=gb2312">
<link rel="stylesheet" type="text/css" href="inc/guhongying.css">
<title>产品明细</title>
</head>
<%
subsid=request("subsid")
sql="select * from subs where subs='"&subsid&"'"
Set rs=Server.CreateObject("ADODB.RecordSet") 
rs.Open sql,conn,1,1 
%>

<body bgcolor="7C96B8" leftmargin="0" topmargin="0" marginwidth="0" marginheight="0">
<table height="50" align="center"><tr><td></td></tr></table>
  
<table width="50%" border="0" cellspacing="1" cellpadding="6" bgcolor="#000000" align="center">
  <tr align="left" bgcolor="316395"> 
    <td colspan="3"><font color="#FFFFFF"><b>此产品的详细信息:</b></font><font color="#FFFFFF"></font></td>
  </tr>
  <tr bgcolor="eeeeee"> 
    <td rowspan="5">
<%
if rs("photo")="0" then
response.write "此<br>商<br>品<br>没<br>有<br>图<br>样"
else
photo=rs("photo")
photo="photo/"+photo
%>
<img src="<%=photo%>" width="40" height="60">
<%end if%> 
 </td>
    <td width="35%">考试课程号:</td>
    <td width="65%"><%=rs("subs")%></td>
  </tr>
  <tr bgcolor="6699CC"> 
    <td width="35%"><font color="#FFFFFF">考试名称:</font></td>
    <td width="65%"><%=rs("subsname")%></td>
  </tr>
  <tr bgcolor="eeeeee"> 
    <td width="35%">题目数量:</td>
    <td width="65%"><%=rs("subsnumber")%></td>
  </tr>
  <tr bgcolor="#6699CC"> 
    <td width="35%"><font color="#FFFFFF">单 价:</font></td>
    <td width="65%"><%=rs("price")%></td>
  </tr>
  <tr bgcolor="eeeeee"> 
    <td width="35%" bgcolor="eeeeee">其他相关信息:</td>
    <td width="65%"> <%
    other = rs("other")
	other = replace(other,chr(13),"<br>")
    other = replace(other,chr(32),"&nbsp;")
	response.write other
%> </td>
  </tr>
</table>
  </body>

</html>

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -