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

📄 adetail.asp

📁 这是我个人用ASP制作 的一个动态网页,也是我的主页,谢谢大家的使用~~~`
💻 ASP
字号:
<%@LANGUAGE="VBSCRIPT" CODEPAGE="936"%>
<!--#include file=doc/config.asp-->
<!--#include file="conn.asp"-->
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=gb2312">
<title>发表留言</title>
<style type="text/css">
<!--
.style1 {font-family: Tahoma}
.style2 {font-size: 12px}
.style3 {font-family: Tahoma; font-size: 12px; }
.style4 {font-size: 14px}
.style5 {font-family: Tahoma; font-size: 14px; }
-->
</style>
</head>
<link type="text/css" href="css.css" rel="stylesheet">
<body background="images/bottom-z.gif">
<table width="807" height="125" border="0" cellpadding="0" cellspacing="0" align="center">
  <tr>
    <td><!--#include file="head.asp"--></td>
  </tr>
</table>
<table width="807" height="256" border="0" cellpadding="0" cellspacing="0" align="center" bgcolor="#FFFFFF">
  <tr>
    <td width="143" height="256" valign="top"><!--#include file="left.asp"--></td>
    <td width="664" valign="top">
	<table width="662" height="95" border="0" cellpadding="0" cellspacing="0">
	<%
	wordid=request.QueryString("wordid")
	set rs=server.CreateObject("adodb.recordset")
	rs.open "select * from revert where wordid='"&wordid&"'",conn,1,1
	if rs.eof and rs.bof then
	   response.redirect "empty.asp"
	else
	%>
      <tr>
        <td width="91" height="30"><span class="style5">回复</span><span class="style5">主题:</span></td>
        <td width="571"><%if len(trim(rs("subject")))>20 then
		 response.write left(trim(rs("subject")),16)&"..."
		 else 
		  response.write trim(rs("subject"))
		  end if
		 %></td>
      </tr>
      <tr>
        <td height="33"><span class="style5">回复内容</span>:</td>
        <td><textarea name="content" cols="55" rows="11" id="content"><%=rs("content")%></textarea>
          </td>
      </tr>
	  <%end if%>
      <tr>
        <td height="32" align="right">&nbsp;            </td>
        <td>&nbsp;          </td>
      </tr>
    </table>
	</td>
  </tr>
</table>
</body>
</html>

⌨️ 快捷键说明

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