textbox.asp
来自「漂亮的欧美旅游模板」· ASP 代码 · 共 33 行
ASP
33 行
<!--#include file="chk.asp"-->
<!--#include file="db_conn.asp"-->
<!--#include file="../my_libs/my_request.asp"-->
<html>
<head>
<title></title>
<META HTTP-EQUIV="Pragma" CONTENT="no-cache">
<meta http-equiv="Content-Type" content="text/html; charset=gb2312">
<LINK href=site.css rel=stylesheet>
</head>
<body leftmargin="0" topmargin="0" marginwidth="0" marginheight="0">
<%
dim action,id,Content
action=my_request("action",0)
id=cint(my_request("id",1))
If action="modify" Then
set rs=server.createobject("adodb.recordset")
sql="select zm_newscontent from ssort_news where nid="&id
rs.open sql,conn,1,1
If Not rs.Eof Then
Content=rs(0)
End If
Response.Write Content
rs.close
set rs=nothing
End If
%>
</body>
</html>
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?