<select size=5 name="SpecialID" style="font-size: 9pt" onchange="location.href='index.asp?id='+value">
<option value=1>专题1</option>
<option value=2>专题2</option>
</select><%
request.querystring("id")
...
%>

解决方案 »

  1.   

    <select size=5 name="SpecialID" style="font-size: 9pt" 
    也可以这样写嘛 ^o^
    onchange="location.href='index.asp?id='+form1.pecialID.value">
    <option value=1>专题1</option>
    <option value=2>专题2</option>
    </select><%
    request.querystring("id")
    ...
    %>
      

  2.   

    你只能能过提交的形式,get or post
      

  3.   

    你须提交,get or post
      

  4.   

    <select size=5 name="SpecialID" style="font-size: 9pt" onchange="location.href='index.asp?id='+value">
    <option value=1>专题1</option>
    <option value=2>专题2</option>
    </select><%
    request.querystring("id")
    ...
    %>用这种方法 会有缓存在index.asp页面中,我修改些内容不能马上显示,必须要关掉该页面,再打开的时候才显示修改后的内容。 有什么办法能去掉缓存吗?
      

  5.   

    <meta http-equiv="pragma" content="no-cache">