⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 up4.asp

📁 是一种自动化办公软件
💻 ASP
字号:
<!--#include file="conn.asp"-->
 <%
   dim rs
   dim sql
   dim id
   id = request.querystring("id")
   set rs=server.CreateObject("ADODB.RECORDSET")
   sql ="select * from yonghu1 where id="&id
   rs.open sql, conn,1,1
   if not rs.eof then
   %>
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=gb2312" />
<title>无标题文档</title>
</head>

<body>
<form id="form1" name="form1" method="post" action="check.asp?action=upt&id=<%=id%>" >
<p>用户名:
  <label>
  <input name="username" type="text"  value="<%=rs("username")%>"/>
  </label>
</p>
<p>用户密码:
  <label>
  <input name="password" type="text" value="<%=rs("password")%>" />
  </label>
</p>



<p>
  <label>
  <input type="submit" name="Submit" value="修改" />
  </label>
</p>
</form>
</body>
</html>
<%
end if
rs.close
set rs = nothing
conn.close
set conn = nothing
%>

⌨️ 快捷键说明

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