docform.htm

<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]

点赞(0) 打赏

评论列表 共有 0 条评论

暂无评论

微信公众账号

微信扫一扫加关注

发表
评论
返回
顶部