textbox1.asp

来自「网络商店源码 实现商品浏览 购物车 后台管理等」· ASP 代码 · 共 23 行

ASP
23
字号

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

<body leftmargin="0" topmargin="0" marginwidth="0" marginheight="0"><%=session("content")%><%
Action=LCase(Request.QueryString("Action"))

set rs=server.createobject("adodb.recordset")
sql="select "&Action&" from shop_config "
rs.open sql,conn,1,1
	If Not rs.Eof Then
		Content=rs(0)
	End If
	Response.Write Content
%>
</body>
</html>

⌨️ 快捷键说明

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