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

📄 gonggao.asp

📁 一套很早的多用户电子商务程序
💻 ASP
字号:
<%@ language="vbscript"%>
<%response.Expires = 0%>
<!--#include file="conn.asp"-->
<!--#include file="Check.asp"-->
<%
set rs=server.createobject("adodb.recordset")
sqltext="select gonggao from Manager"
rs.open sqltext,conn,3,3
if request("up")="save" then
rs("gonggao")=request.form("gonggao")
rs.update
response.write"<script>alert('最新公告提交成功!');window.location.href='gonggao.asp'</script>"
end if
gonggao=rs("gonggao")
rs.close:set rs=nothing
%>
<html>
<head>
<STYLE>BODY {
	FONT-SIZE: 10pt
}
TD {
	FONT-SIZE: 10pt; LINE-HEIGHT: 150%
}
A {
	TEXT-DECORATION: none
}
A:hover {
	TEXT-DECORATION: underline
}
</STYLE>
<script language="javascript"></script>
<title>后台管理</title>
<meta http-equiv="Content-Type" content="text/html; charset=gb2312">
</head>
<body background="../pic/user/bg.jpg">
<div align="center"><strong><br>
  最 新 公 告</strong> 
  <form name="form1" method="post" action="gonggao.asp?up=save">
    <textarea name="gonggao" cols="50" rows="12"><%=gonggao%></textarea>
    <br>
    <br>
    <input type="submit" name="Submit" value="确认提交">
  </form>
</div>
</body>
</html>

⌨️ 快捷键说明

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