textbox.asp

来自「很好的企业网站管理系统!可以适应各种不同的小型企业!」· ASP 代码 · 共 30 行

ASP
30
字号
<!--#include file="mdb_path_info.asp"-->
<html>
<head>
<title></title>
<META HTTP-EQUIV="Pragma" CONTENT="no-cache">
<meta http-equiv="Content-Type" content="text/html; charset=gb2312">
<style>
td{font-size:9pt;line-height:160%} 
body{font-size:9pt;line-height:160%} 
a:link       { color: #0033CC; text-decoration: none }
a:visited    { color: #0033CC; text-decoration: none }
a:hover      { color: #000000; text-decoration: underline}
</style>
</head>
<body leftmargin="0" topmargin="0" marginwidth="0" marginheight="0">
<%
If request("action")="modify" Then
set rs=server.createobject("adodb.recordset")
sql="select * from info where id="&request("id")
rs.open sql,conn,1,1
If Not rs.Eof Then
body=rs("info")
End If
Response.Write body
rs.close
set rs=nothing
End If
%>
</body>
</html>

⌨️ 快捷键说明

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