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

📄 edit.asp

📁 一心FLASH动画欣赏系统
💻 ASP
字号:
<!--#include file="conn.asp"-->
<%
if session("a")="" then
response.redirect "index.asp"
end if
lid=request("id")
sql="select * from gequ where id=cint('"&lid&"')"
set rs=server.createobject("adodb.recordset")
rs.open sql,connstr,1,1
if not rs.eof then
gename=request.form("gename")
address=request.form("address")
if gename<>"" and edit<>"修改" then
sql="select * from gequ where id=cint('"&lid&"')"
set rs=server.createobject("adodb.recordset")
rs.open sql,connstr,3,2
rs("name")=gename
rs("address")=address
rs.update
session("edituser")=gename
response.redirect "ook.asp"
end if
end if
%>
<html>

<head>
<style type="text/css">
<!-- 
td           { font-size: 12px; line-height: 17px }
body         { font-size: 12px; line-height: 17px }
p            { margin-top: 1; margin-bottom: 1 }
a:link       { text-decoration: none; color: black }
a:visited    { text-decoration: none; color: black }
a:active     { text-decoration: none }
a:hover      { text-decoration: underline; color: red }
-->
</style>
<meta http-equiv="Content-Type" content="text/html; charset=gb2312">
<meta name="GENERATOR" content="Microsoft FrontPage 4.0">
<meta name="ProgId" content="FrontPage.Editor.Document">
<title>编辑</title>
</head>
<body topmargin="0">

 <div align="center">
  <center>
  <form action="" method="post">
  <table border="0" width="100%" cellspacing="0" cellpadding="0">

    <tr>
      <td width="42%" align="right">歌曲名称:</td>
      <td width="58%"><input type="text" name="gename" size="30" value="<%=rs("name")%>"></td>
    </tr>
    <tr>
      <td width="42%" align="right">歌曲地址:</td>
      <td width="58%"><input type="text" name="address" size="30" value="<%=rs("address")%>"></td>
    </tr>
    <tr>
      <td width="100%" align="right" colspan="2">
        <p align="center"><input type="submit" value="修改" name="add">&nbsp;&nbsp; 
        <input type="reset" value="取消" name="reset">&nbsp; <a href="index.asp">返回首页</a></td>
    </tr>
  </table>
 </form>
  </center>
</div>                 
</body>                    
                    
</html>                    

⌨️ 快捷键说明

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