代码如下:

<form id="form1" name="form1" method="post" action="">
数字一
<input type="text" name="no1" id="no1" />
数字二
<input type="text" name="no2" id="no2" />
结果
<input type="text" name="no3" id="no3" />
<%
If Request.Form("no1")<>"" And Request.Form("no2")<>"" Then
Response.Write "<label>"&Cint(Request.Form("no1"))*Cint(Request.Form("no2"))&"</label>"
<!--注:直接切换+-*/,即可-->
End If
%>
<br>
<br>
<input type="submit" name="button" id="button" value="计算" />
</form>

问题:如何把结果放入no3表单中?