docform.htmxml:namespace prefix = o ns = “urn:schemas-microsoft-com:office:office” /??
<form action=”doccreate.asp”>
å§ÂÃ¥ÂÂ: <input type=”text” name=”Name” size=”50″ maxlength=”100″>
çµåÂÂé®件: <input type=”text” name=”Email” size=”50″ maxlength=”100″>
<p>Ã¥ÂÂ
容:<textarea cols=”50″ rows=”10″ name=”comments”></textarea>
<input type=”submit” value=”æÂÂ交“> <p>
</form>
doccreate.asp
<% Response.ContentType = “application/msword” %>
<html>
<% strName = Request.Querystring(“Name”)
strEmail = Request.Querystring(“Email”)
strComments = Request.Querystring(“Comments”)
%>
<head>
</head>
<body>
<p align=”right”><%=formatdatetime(now,2)%></p>
<%= strname %>:
æÂÂçÂÂçµåÂÂé®件æ¯: <%= stremail %>
Ã¥ÂÂ
容æ¯: <%= strComments %>
</body></html>
[1]