www.gusucode.com > 星云DJ舞曲 4.5a源码程序 > admin/admin_xuanmodify.asp

    <!--#include file="conn.asp"-->
<!--#include file="checkadmin.inc"-->
<html>
<head>
<title>迪吧后台管理系统</title>
<meta http-equiv="Content-Type" content="text/html; charset=gb2312">
<link href="Admin_Style.css" rel="stylesheet" type="text/css">
</head>
<body leftmargin="2" topmargin="0" marginwidth="0" marginheight="0" class="tdbg">
<%
founderr=false
id=request.QueryString("id")
set rs=server.createobject("adodb.recordset")
sql="select * from DJxuan where id="&id
rs.open sql,conn,1,1
if rs.eof then
	errmsg=errmsg+"<br>"+"<li>服务器出错!请联系管理员"
	founderr=true
else
	Username=rs("Username")
	picurl=rs("Picurl")
	xuanqq=rs("xuanqq")
	rs.close
end if
if founderr=true then
	call error()
else
%>
      <table border="0" width="100%" cellspacing="0" cellpadding="0" class="Tdbg">
        <form method="POST" action="admin_xuanSave.asp?id=<%=id%>" id=form2 name=form2>
          <tr>
            <td width="100%" height="20" colspan=2 align=center class="title"><b>修 改 成 员 资 料</b></td>
          </tr>
          <tr>
            <td align="right">成 员 名 称:</td>
            <td>
			<input type=text name=username size="14"  value="<%=Username%>"  name=keyword size=14 maxlength="30"></td>
          </tr>
			<tr>
            <td align="right" height="22">Q Q 号 码:</td>
            <td height="22">
			<input type=text name=xuanqq size="14"  value="<%=xuanqq%>" name=keyword size=14 maxlength="30"></td>
          </tr>
			<tr>
            <td align="right" height="22">相 片 路 径:</td>
            <td height="22">
			<input type=text name=picurl size="30"  value="<%=picurl%>" size=20></td>
          </tr>
          <tr align="center">
            <td colspan=2 class="title">
              <input type="hidden" value="edit" name="act"> 
              <input type="submit" value=" 修 改 " name="cmdok2">&nbsp; 
              <input type="reset" value=" 清 除 " name="cmdcance2l">
            </td>
          </tr>
        </form>
      </table>
    </td>
    <td align=center valign=top width="5" >
      </td>
  </tr>
  <tr>
    <td width=100% valign=top colspan="5" class="tdbg"></td>
    </tr>
</table>
  </center>
</div>
<%end if%>