注册 登录
编程论坛 ASP技术论坛

如何把结果放入指定表单中?

lk2lklk 发布于 2023-02-19 12:17, 1299 次点击
代码如下:

<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表单中?
3 回复
#2
apull2023-02-19 22:13
程序代码:

<%

If Request.Form("no1")<>"" And Request.Form("no2")<>"" Then
result
=Cint(Request.Form("no1"))*Cint(Request.Form("no2"))
<!--注:直接切换+-*/,即可-->
End If
%>

<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" value="<%=result%>" />

<br>
<br>
<input type="submit" name="button" id="button" value="计算" />
</form>
#3
lk2lklk2023-02-20 19:21
回复 2楼 apull
非常感谢!!
#4
loveybd2023-12-14 11:47
asp还有人用吗

1