templet_textbox.asp

来自「新闻发布系统」· ASP 代码 · 共 32 行

ASP
32
字号
<html>
<head>
<!--#include file = conn.asp--> 
<META HTTP-EQUIV="Pragma" CONTENT="no-cache">
<meta http-equiv="Content-Type" content="text/html; charset=gb2312">
<LINK href=css/css.css rel=stylesheet>
</head>
<body leftmargin="0" topmargin="0" marginwidth="0" marginheight="0"><%=session("content")%>
<%
'=========================================================
'产品目录:风讯产品N系列
'软件名称:风讯站点管理系统
'当前版本:2004.I.0225
'最新更新:2004.2.10
'=========================================================
'Copyright (C) 2002-2004 cooin.com. All rights reserved.
'网站: http://www.cooin.com  Foosun.net
'程序制作:轻风云(QQ:655071)
'Email:skeen@cooin.com,skeen@Foosun.net
'论坛支持:风讯在线论坛(http://bbs.cooin.com   http://bbs.foosun.net)
'=========================================================
  if request.querystring("action")="Modify" then
    set rs=Server.CreateObject("Adodb.RecordSet")
    sql="select TempletContent from Templet where ID="&request.querystring("ID")
	rs.open sql,conn,1,1
	response.write rs("TempletContent")
	rs.close
	set rs=nothing
  end if
%>
</body>
</html>

⌨️ 快捷键说明

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