病种用药用下拉框吧?本论坛搜索“连动”

解决方案 »

  1.   

    <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
    <html>
    <head>
    <meta http-equiv="Content-Type" content="text/html; charset=gb2312">
    <title>无标题文档</title>
    </head><body><table width="57%" border="1">
      <tr>
        <td width="29%" height="174"><form name="form1" method="post" action="">
            <input type="text" name="textfield">
          </form></td>
        <td width="19%"><select name="select2" accesskey="a" >
            <option selected>药物</option>
            <%
    for i=1 to 20
    response.write("<option>"&i&"</option>")
        next
    %>
            <option>c</option>
          </select></td>
        <td width="24%"><form name="form1" method="post" action="">
            <input type="text" name="textfield2">
          </form></td>
        <td width="28%"><select name="select" accesskey="a" >
            <option selected>病种</option>
            <%
    for i=1 to 20
    response.write("<option>"&i&"</option>")
        next
    %>
            <option>c</option>
          </select></td>
      </tr>
    </table>
    </body>
    </html>