首先编写:main.jsp:用来实现用户界面的输入,下面我们就来说一说关于jsp求梯形面积表单?我们一起去了解并探讨一下这个问题吧!
jsp求梯形面积表单
首先编写:main.jsp:用来实现用户界面的输入。
<%@ page contentType="text/html;charset=gb2312"%>
<html>
<head></head>
<body bgcolor="yellow">
<form action="circle.jsp" method=get>//发送到circle.jsp
圆形半径:<input type="text" value="" name="t1"></br>
<input type="submit" value="提交">
</form>
<form action="ladder.jsp" method=get>//发送到ladder.jsp
梯形上底:<input type="text" value="" name="top"></br>
梯形下底:<input type="text" value="" name="bottom"></br>
梯形高:<input type="text" value="" name="height"></br>
<input type="submit" value="提交">
</form>
</body>
</html>
在编写circle.jsp://用来计算圆形面积
<%@ page contentType="text/html;charset=gb2312"%>
<html>
<head></head>
<body bgcolor="yellow">
<%!