📄 temp.asp
字号:
<%@LANGUAGE="VBSCRIPT" CODEPAGE="936"%>
<!--#include file="Connections/assistconn.asp" -->
<%
Dim rs01__MMColParam
rs01__MMColParam = "manager"
If (Request("MM_EmptyValue") <> "") Then
rs01__MMColParam = Request("MM_EmptyValue")
End If
%>
<%
Dim rs01
Dim rs01_numRows
Set rs01 = Server.CreateObject("ADODB.Recordset")
rs01.ActiveConnection = MM_assistconn_STRING
rs01.Source = "SELECT stpassword FROM user WHERE stuser = '" + Replace(rs01__MMColParam, "'", "''") + "'"
rs01.CursorType = 0
rs01.CursorLocation = 2
rs01.LockType = 1
rs01.Open()
rs01_numRows = 0
%>
<html>
<head>
<title>Untitled Document</title>
<meta http-equiv="Content-Type" content="text/html; charset=gb2312">
</head>
<body>
<%
mngpasswd=(rs01.Fields.Item("stpassword").Value)
'mngpasswd="1"
response.Write(mngpasswd)
%>
<p>显示记录页面表格像素</p>
<p>120<br>
90<br>
40<br>
120<br>
80<br>
160<br>
40<br>
80<br>
100 </p>
</body>
</html>
<%
rs01.Close()
Set rs01 = Nothing
%>
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -