把ENCTYPE="multipart/form-data"
删除就可以了.

解决方案 »

  1.   

    问题是怎么删除,我也知道删除
    form.enctype.delete?
      

  2.   

    ice_berg16(寻梦的稻草人) ( ) 信誉:125
     能不能写具体点!
      

  3.   

    <form name = "form1" id="form1" method ="post" ENCTYPE="multipart/form-data"
    >
    .....
    </form>
    -----------------------------------
    修改为
    <form name = "form1" id="form1" method ="post" >
    .....
    </form>
      

  4.   

    adandelion(猪头) ( )
    你说的这个我知道,我要在脚本里面修改他,因为我两个按钮实现两个功能,一个是普通提交一个是上传提交~~~
      

  5.   

    Sets or retrieves the Multipurpose Internet Mail Extensions (MIME) encoding for the form.SyntaxHTML <FORM ENCTYPE = sType... >  
    Scripting FORM.enctype(v) [ = sType ] Possible ValuessType String that specifies or receives the format of the data being submitted by the form. The property is read/write. The property has a default value of application/x-www-form-urlencoded.ResThe enctype property was introduced in Microsoft Internet Explorer 6. If backwards compatibility is required, use the encoding property.Internet Explorer also recognizes multipart/form-data, which, along with a POST method, is required to submit a file upload to the server. Standards Information能不能把它的值设为默认的;The property has a default value of application/x-www-form-urlencoded.
      

  6.   

    ok ,搞定了,
    合并ice_berg16(寻梦的稻草人) ( ) 和 qidizi(qidizi) ( ) 的方法