ASP Word.Application แม้ว่าการส่งออกในรูปแบบของ Microsoft Word ค่อนข้างจะทำได้จากกว่า Excel เพราะ Syntax ในการใช้งานค่อนข้างจะหายากกว่าในส่วนของ Excel เยอะครับ อาจจะเป็นเพราะไม่ค่อยมีการใช้งานในส่วนของ ASP กับ Word และรูปแบบการใช้งานที่เป็นเอกสารการที่จะทำอะไรกับเอกสารจึงสามารถทำได้ยาก แต่ผมก็ได้รวบรวมการใช้งานได้ในระดับหนึ่ง ซึ่งสามารถเขียนออกเป็นรายงานได้อย่างสบายครับ
<% Option Explicit %>
<html>
<head>
<title>ThaiCreate.Com ASP Word.Application Tutorial</title>
</head>
<body>
<%
Dim WrdApp
Set WrdApp = Server.CreateObject("Word.Application")
If IsObject(WrdApp) Then
Response.write("Connect to Word.Application")
Else
Response.write("Can Not Connect to Word.Application")
End IF
%>
</body>
</html>
Error Message
Error Type:
Server object, ASP 0178 (0x80070005)
The call to Server.CreateObject failed while checking permissions. Access is denied to this object.
/myasp/AspConnectWord.asp, line 9
หรือบน Windows Server
Server object error 'ASP 0177 : 800401f3'
Server.CreateObject Failed
/myasp/AspConnectWord.asp, line 9