2010-12-26 21:56:16呆呆咩

程式語言(長方形)

<form action="http://localhost/aaa.asp">
長:<input name="fullname" type="text">
寬:<input name="fullname111" type="text">
<input type=submit value="SUBMIT">
<input type=reset value="RESET">

</form> 

存成default.htm檔


<html>
<%@ language="javascript" %>
<body>
<%
fullname = Request.QueryString("fullname");

fullname111=Request.QueryString("fullname111");
Response.Write("長方形面積:" + fullname*fullname111);
%>
</body>
</html>

存成aaa.asp檔

知後放入C槽檔案夾中