日期:2014-05-17  浏览次数:20712 次

如何将一个input里的value通过form传到2个不同的.asp文件中
att..

------解决方案--------------------
<form name= "f ">
<input name= "year " type= "int " size= "8 " maxlength= "8 " />
<input type= "button " onclick= "document.f.action= '1.asp ';document.f.submit() ">
<input type= "button " onclick= "document.f.action= '2.asp ';document.f.submit() ">
</form>