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

📄 edit.asp

📁 asp程序,自动投稿系统,也可以用来学生交作业,原创程序.
💻 ASP
字号:

<%@LANGUAGE="VBSCRIPT" CODEPAGE="936"%>
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
<!--#include file="conn.asp"-->
<%
ID=Request.form("ID")

if id="" then
	response.Write "<script langurage=javascript> alert('对不起, 您没有访问权限!')</script>"
	response.End
end if
session("edit_id")=id
sql="select * from file where id="&id
rs.open sql,conn,1,1
	

%>
<html>
<head>

<meta http-equiv="Content-Type" content="text/html; charset=gb2312">

<style type="text/css">
<!--
body,td,th {
	font-family: Arial, Helvetica, sans-serif;
	font-size: 16px;
}
a {
	font-family: Arial, Helvetica, sans-serif;
	font-size: 16px;
}
.tx1 {width: 400 ;height: 20px; font-size: 9pt; border: 1px solid; border-color: black black #000000; color: #0000FF}
.bt {border-left:1px solid #C0C0C0; border-top:1px solid #C0C0C0; font-size: 9pt; border-right-width: 1; border-bottom-width: 1; height: 16px; width: 80px; background-color: #EEEEEE; cursor: hand; border-right-style:solid; border-bottom-style:solid}
-->
</style><title>修改意见</title></head>
<body>


<form name="form1" method="post" ACTION="editsave.asp" ENCTYPE="multipart/form-data">
  <table width="650"  border="0">
    <tr>
      <td height="26"><div align="center">文章题目</div></td>
      <td height="26" colspan="5"><%=rs("title")%></td>
    </tr>
    <tr>
      <td  height="26"><div align="center">第一作者</div></td>
      <td  height="26"><%=rs("authorname")%></td>
      <td >联系人</td>
      <td ><%=rs("username")%></td>
      <td >投稿时间</td>
      <td ><%=rs("date")%> </td>
    </tr>
    <tr>
      <td ><div align="center">修改意见</div></td>
      <td colspan="5" ><textarea name="yj" cols="50" rows="15" readonly><%=rs("result")%></textarea></td>
    </tr>
    <tr>
      <td height="26" colspan="1">&nbsp;</td>
      <td height="26"colspan="5">&nbsp;</td>
    </tr>
    <tr>
      <td height="26" colspan="1">上传修改后稿件</td>
      <td height="26"colspan="5">&nbsp;<input type="file" name="file" class="tx1"  size="20">		   &nbsp;&nbsp;
		  
		  <input type="submit" name="submit" class="bt" value="上 传"></td>
    </tr>
    <tr>
      <td height="26" colspan="6"><div align="center"></div>        <div align="left">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;</div></td>
    </tr>
  </table>
 <%

 rs.close
 set rs=nothing
 conn.close
 set conn=nothing 
 %>
</form>
</body>
</html>

⌨️ 快捷键说明

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