Quizas esto os solucione algo:
<%@LANGUAGE="VBSCRIPT" CODEPAGE="1252"%>
<html>
<head><title>Crea un documento de word</title></head>
<body>
<center>
<font color="#800080" size="4"><b>
Create a word document</b></font>
</center>
<p>
<center>
</p>
<table>
<form action="creaword.asp">
<tr>
<td><font color="#000080" size="3"><b>Name:</b></font> </td>
<td><input type="text" name="Name" size="50" maxlength="100"></td>
</tr>
<tr>
<td><font color="#000080" size="3"><b>Email:</b></font> </td>
<td><input type="text" name="Email" size="50" maxlength="100"></td>
</tr>
<tr><td>
<font color="#000080" size="3"><b>
Comments:</b></font> </td><td>
<textarea cols="50" rows="10" name="comments"></textarea></td>
</tr>
</table>
</center>
<p align="center">
<input type="submit" value="Submit">
</form><p align="left"> </p>
</body>
</html>-------------------------------------------------------------------------
Archivo:creaword.asp <%@LANGUAGE="VBSCRIPT" CODEPAGE="1252"%>
<% Response.ContentType = "application/msword" %><html>
<head>
<title>Crea Word </title>
</head>
<body bgcolor="#FFFFFF">
<% strName = Request.Querystring("Name")
strEmail = Request.Querystring("Email")
strComments = Request.Querystring("Comments")
%> <p align="right"><%=formatdatetime(now,2)%></p>Dear <%= strname %>: <br>
My email addess is: <%= stremail %> <br>
My Comments are: <%= strComments %>
</body>
</html>