这个是生成<input type='text'>让人来填写的。

解决方案 »

  1.   

    将你客户端的提交方法改为"GET",然后你再Submit可以看出客户端提交时是有数据的
      

  2.   

    楼上的可以清楚具体的说一下吗》
    是不是触发事件没吗》
    <select onchange="cha(this.value)">
    <%
    for i=1 to 20
    response.write "<option value='"&i&"'>"&i&"</option>"
    next
    %></select>
      

  3.   

    下面是我改的代码,我不知道你的页面代码是怎么写的.不可能没有触发cha()这个函数吧.<html>
    <head>
    <script language="javascript">
    function cha(selv)
    {
    var b="";
    //var chav=document.getElmentById("chav").value;
    for(var t=1;t<=selv;t++)
    {
    b=b+"<input id='selvi' name='selvi' type='text' size=38>&nbsp;&nbsp;<input name='selID' id=selID type='text' size=5><br>";
    }
    sel.innerHTML=b;
    //chav.value=selv;
    //alert(chav.value);}
    </script></head>
    <body onLoad="cha(1)">
    <form action="" medthod="get">
    <input type=hidden name=chav id=chav><span id=sel name=sel></span>
    <input type="submit" value="check" >
    </form></body>
    </html>
      

  4.   

    <html>
    <head>
    <script language="javascript">
    function cha(selv)
    {
    var b="";
    //var chav=document.getElmentById("chav").value;
    for(var t=1;t<=selv;t++)
    {
    b=b+"<input id='selvi' name='selvi' type='text' size=38>&nbsp;&nbsp;<input name='selID' id=selID type='text' size=5><br>";
    }
    sel.innerHTML=b;
    //chav.value=selv;
    //alert(chav.value);}
    </script></head>
    <body onLoad="cha(3)">
    <form action="" medthod="get">
    <input type=hidden name=chav id=chav><span id=sel name=sel></span>
    <input type="submit" value="check" >
    </form></body>
    </html><%
    response.write request.form("selvi")
    %>这样测试一下吧。照hij333() 兄的思路,。一样不行。
      

  5.   

    但是URL有值。。我试一下用
    request.querystring
      

  6.   

    response.write request.QueryString("selvi")可以。
    我知道什么原因啦。
    非常谢谢  hij333() 关注帮助