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

📄 04_03.htm

📁 ASPTest 网络基础网页设计
💻 HTM
字号:
<html>
<head>
<title>Form表单实例</title>
<style>
<!--
td           { font-size: 12px }
-->
</style>
</head>
<body>
<p align="center"><font size="2">请填写注册信息 </font>
<form method="POST" action="04_03a.asp">
  <table border="0" cellpadding="0" cellspacing="0" style="border-collapse: collapse" bordercolor="#111111" width="484" height="237" align="center">
    <tr>
      <td align="right" bgcolor="#CDCDDE" width="84">注册ID:</td>
      <td bgcolor="#C0C0D6" align="center" width="400">
        <input type="text" name="txtID" size="20">
      </td>
    </tr>
    <tr>
      <td align="right" bgcolor="#CDCDDE" width="84">注册密码:</td>
      <td bgcolor="#CDCDDE" align="center" width="400">
        <input type="password" name="txtPWD" size="20">
      </td>
    </tr>
    <tr>
      <td align="right" bgcolor="#CDCDDE" width="84">确认密码:</td>
      <td bgcolor="#C0C0D6" align="center" width="400">
        <input type="password" name="txtRepeat" size="20">
      </td>
    </tr>
    <tr>
      <td align="right" bgcolor="#CDCDDE" width="84">性别:</td>
      <td bgcolor="#CDCDDE" align="center" width="400">
        <input type="radio" value="男" checked name="rdSex">男
        <input type="radio" name="rdSex" value="女">女
        <input type="radio" name="rdSex" value="保密">保密
      </td>
    </tr>
    <tr>
      <td align="right" bgcolor="#CDCDDE" width="84">爱好:</td>
      <td bgcolor="#C0C0D6" align="center" width="400">
        <input type="checkbox" name="chkInterest" value="阅读">阅读
        <input type="checkbox" name="chkInterest" value="写作">写作
        <input type="checkbox" name="chkInterest" value="购物">购物
      </td>
    </tr>
    <tr>
      <td align="right" bgcolor="#CDCDDE" width="84">订阅:</td>
      <td bgcolor="#CDCDDE" align="center" width="400">
        <input type="checkbox" name="chkMark" value="文学类作品">文学类作品
        <input type="checkbox" name="chkMark" value="写作类作品">写作类作品
        <input type="checkbox" name="chkMark" value="时尚类作品">时尚类作品
      </td>
    </tr>
    <tr>
      <td align="right" bgcolor="#CDCDDE" width="84">来自:</td>
      <td bgcolor="#C0C0D6" align="center" width="400">
        <select size="1" name="mnFrom">
          <option selected>湖北</option>
          <option>湖南</option>
          <option>河南</option>
          <option>河北</option>
          <option>其他</option>
        </select>
      </td>
    </tr>
    <tr>
      <td bgcolor="#CDCDDE" width="84"> </td>
      <td bgcolor="#CDCDDE" width="400"> </td>
    </tr>
    <tr>
      <td bgcolor="#CDCDDE" width="84">
      <p align="right">反馈意见:</td>
      <td bgcolor="#C0C0D6" width="400">
      <p align="center">
      <textarea rows="4" name="txtrAdvice" cols="50"></textarea></td>
    </tr>
    <tr>
      <td colspan="2" bgcolor="#B9B9FF" align="center" width="484">
        <input type="submit" value="提交" name="B1">&nbsp;&nbsp; 
        <input type="reset" value="清除" name="B2">
      </td>
    </tr>
  </table>
</form>
</body>
</html>

⌨️ 快捷键说明

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