2010-12-26 22:40:38呆呆咩

GET表單

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


Name:
存為htm檔


<html>
<%@ language="javascript" %>
<body>
<%
fullname = Request.QueryString("fullname");
Response.Write("Your Name is:" + fullname);
%>
</body>
</html>

存為asp檔