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

📄 ground_edit.asp

📁 体育馆管理系统 体育馆管理系统 体育馆管理系统 体育馆管理系统 体育馆管理系统
💻 ASP
字号:
<%@LANGUAGE="VBSCRIPT" CODEPAGE="936"%>
<!--#include file="Connections/gym.asp" -->
<!--#include file="inc/is_admin.asp" -->
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=gb2312">
<title>修改场地</title>
<style type="text/css">
<!--
@import url("style.css");
-->
</style>
</head>

<%
ground_id=request("ground_id")
'打开场地数据库--------------------
set rs_ground=server.CreateObject("adodb.recordset")
sql = "select * from ground where ground_id=" & ground_id 
rs_ground.open sql,gym_conn,3,2
%>
<body>

<div align="center">
  <table width="706" height="281" border="0" class="table_big">
    <tr>
      <td valign="top"><div align="center">
          <!--#include file="inc/admin_head.asp" -->
		  <br>
          <form name="form1" method="post" action="ground_update.asp">
            <table width="430" border="0" class="table_small">
              <tr>
                <td colspan="3">&nbsp;</td>
              </tr>
              <tr>
                <td colspan="3" class="text_title"><div align="left">添加新场地</div></td>
              </tr>
              <tr>
                <td colspan="3" class="table_title">&nbsp;</td>
              </tr>
              <tr class="text">
                <td width="119"><div align="left">场地名称: </div></td>
                <td colspan="2"><div align="left">
                    <input name="name" type="text" class="textfield" id="name" value="<%= rs_ground("name") %>">
                </div></td>
              </tr>
              <tr class="text">
                <td><div align="left">场地类型:</div></td>
                <td colspan="2"><div align="left">
                    <select name="type" class="textfield" id="type">
						<option></option>
					  <option>足球</option>
                      <option>篮球</option>
                      <option>排球</option>
                      <option>羽毛球</option>
                      <option>乒乓球</option>
                      <option>网球</option>
                      <option>游泳池</option>
                    </select>
                </div></td>
              </tr>
              <tr class="text">
                <td><div align="left">花费(每小时/元):</div></td>
                <td colspan="2"><div align="left">
                    <input name="cost" type="text" class="textfield" id="cost" value="<%= rs_ground("cost") %>">
                </div></td>
              </tr>
              <tr>
                <td colspan="3">&nbsp;</td>
              </tr>
              <tr>
                <td>&nbsp;</td>
                <td width="72"><input name="edit" type="submit" id="edit" value="修改"></td>
                <td width="221"><div align="left">
                    <input name="reset" type="button" id="reset" value="清空">
                </div></td>
              </tr>
              <tr>
                <td colspan="3">&nbsp;</td>
              </tr>
            </table>
          </form>
          <br>
          <!--#include file="inc/foot.asp" -->
		  <br>
      </div></td>
    </tr>
  </table>
</div>
</body>
</html>

⌨️ 快捷键说明

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