textbox.asp

来自「社区天地图文系统(核心:尘缘雅境图文系统) 版本: 1.0 本系统是ASP」· ASP 代码 · 共 32 行

ASP
32
字号
<!--#include file=include/conn.asp -->
<!--#include file=include/config.asp -->
<!--#include file=admin/chkuser.asp -->
<html>
<head>
<title></title>
<META HTTP-EQUIV="Pragma" CONTENT="no-cache">
<meta http-equiv="Content-Type" content="text/html; charset=gb2312">
<LINK href=admin/site.css rel=stylesheet>
</head>

<body leftmargin="0" topmargin="0" marginwidth="0" marginheight="0">
<%=request.cookies("content")%>
<%
Dim action,newsID,rs,Content
dim sql
dim conn
Action=LCase(Request.QueryString("Action"))
newsID=Request.QueryString("newsID")

If request("action")="modify" Then
set rs=server.createobject("adodb.recordset")
sql="select * from news where newsid="&newsid
rs.open sql,conn,1,1
	If Not rs.Eof Then
		Content=rs("Content")
	End If
	Response.Write Content
End If
%>
</body>
</html>

⌨️ 快捷键说明

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