Using Active Server Pages to Build Microsoft Word Documents
By Gardiner B. Jones
Background
BuildDoc.asp is an Active Server Page (ASP) that reads the output of a
Web page form, and creates as output a Microsoft Word document contai
ning a table of changed data within the form. Forms are no longer limi
ted to containing static information. With database connectivity, the
increasing use of Dynamic HTML (DHTML), and the growing interest in XM
L, it has become common practice in business Web pages for the data co
ntained in them to be dynamic. That is, what is shown in the form may
change based on user interaction (see the sample input form below).
The business need filled by BuildDoc is to enable sales associates to
create form letters from the changed records of a Web page table. Only
the data modified by the sales person is sent to Word, where it is fo
rmatted into a table. Obviously, all samples here are fictitious.
BuildDoc will read all of the information on the form, identifying whi
ch rows have been changed, and then creates the Microsoft Word documen
t using only the information contained within the changed rows (see th
e sample output document below). BuildDoc uses a template file (buildD
oc.dot) that contains the address header, and some preformatted text.
It then writes a table into the document that has a row for each modif
ied row from the Web page form.
How To Do It
We start by reading all of the Web page form fields into hidden form f
ields on the receiving Web page. In the source code below, note the "
onLoad " call in the body tag. It calls the buildDoc VBScript subrouti
ne, passing three parameters to it: the contents of the page's form (a
ll the hidden fields), the location of the Word template file, and the
number of rows received from the input form. The input form fields ar
e all read and then, when the page loads, it calls the buildDoc subrou
tine. For the sake of brevity, we will assume that all variables have
been first declared before use.
The code for the loading of the input form fields into buildDoc.asp is
thus: -
<!DOCTYPE HTML PUBLIC "-//W3C/DTD HTML 3.2 Final//EN">
<HEAD>
<TITLE>Build Document</TITLE>
<META HTTP-EQUIV="Refresh" CONTENT="30;URL='orderForm.asp'">
</HEAD>
<%
dotLocation="'\\servername\directory\theTemplate.dot'"
intRowCount = Request.Form("rowCount") 'initialize a row counter
%>
<BODY Language="VBScript" onLoad="buildDoc document.theForm,
<%=dotLocation%>,intRowCount>
<FORM NAME="theForm">
<%
itemCount = 0 'set field counter to zero
For Each Item in Request.Form 'count up the form fields
itemCount = itemCount + 1 'using For..Next loop
%>
<INPUT TYPE="hidden" NAME="<%=Item%>" VALUE="<%=Request(Item)%>">
<% Next %>
<INPUT TYPE="hidden" NAME="numbRows" VALUE="<%=intRowCount%>">
<INPUT TYPE="hidden" NAME="fieldCount" VALUE="<%=itemCount%>">
</FORM>
</BODY>
</HTML>
We create an instance of the Word Document object, using the sample co
de immediately below. Note that in Internet Explorer 4+ this will fail
unless the browser security is set to Low, or Custom with the appropr
iate setting to run programs.
<%
Set objWordDoc = CreateObject("Word.Document")
ObjWordDoc.Application.Documents.Add theTemplate, False
ObjWordDoc.Application.Visible=True
%>
We re-dimension our array so that it is the same size as the number of
rows that are contained in the Web page's form. In this case, we set
the Y-axis to a constant value of four because that is the number of c
olumns we need in the output document. The X-axis contains the number
of received rows from the form.
<%
Redim Preserve theArray(4,intTableRows)
%>
Now we are ready to examine all of the form rows. We do this by loopin
g through all the input Web page form fields to collect each form fiel
d name and corresponding value. We test each to determine which array
element to put it into, and then we put it there. The SELECT CASE stat
ement in the code sample below is important. It is where we determine
in which column the form field belongs. We used hard coded CASE option
s here for expediency.
<%
For intCount = 0 to frmData.fieldCount.value
strOkay = "Y"
strSearch = frmData.elements(intCount).name 'load the field name
strValue = frmData.elements(intCount).value 'load the field value
strPosition = Instr(1,strSearch,"_") 'get pos val of "_"
intStringLen=strPosition-1
If intStrLen > 0 Then
strLeft = Left(strSearch,intStringLen)
strRight = Right(strSearch,(Len(strSearch)-Len(strLeft)-1))
Select Case strLeft
Case "SKU" intArrayY=0
Case "description" intArrayY=1
Case "price" intArrayY=2
Case "quantity" intArrayY=3
End Select
IntArrayX = strRight
If strOkay <> "N" Then
TheArray(intArrayY, intArrayX) = strValue
End If
End If
Next
%>
Now we are ready to begin creating the document. We start by setting t
he Microsoft Word Document object RANGE using our variable, rngCurrent
, to the active document (just in case the user has a different docum
ent also open). Then we specify the table size by specifying its locat
ion ( rngCurrent ) and the number of rows and columns it needs.
<%
Set rngCurrent = objWordDoc.Application.ActiveDocument.Content
Set tabCurrent = ObjWordDoc.Application.ActiveDocument.Tables.Add
rngCurrent,intNumrows,4)
%>
Having created the document with the table, we now begin populating th
e table with data. First we point to the first row ( tabRow=1 ), then
begin a loop that will run through each row. We insert a line feed [ C
hr(10) ] at the end of each row to put some white space between rows.
Finally, we increment our row counter, output the dollar values with "
FormatCurrency" to ensure use of dollar signs, commas and decimal plac
es. Right justification of dollar amounts is handled by setting the co
lumn in question to " ParagraphAlignment=2 ". I won't tell you how muc
h of a pain it was to discover how to do that! Suffice it to say that
it is easier and better documented in VBA, which is not at all like wh
at is required in VBScript.
<%
For j = 1 to intTableRows
ObjWordDoc.Application.ActiveDocument.Tables(1).Rows(tabRow).Borders.E
nable=False
objWordDoc.Application.ActiveDocument.Tables(1).Rows(tabRow).Cells(1).
Range.InsertAfter theArray(1,j)
objWordDoc.Application.ActiveDocument.Tables(1).Rows(tabRow).Cells(2).
Range.InsertAfter theArray(2,j)
objWordDoc.Application.ActiveDocument.Tables(1).Rows(tabRow).Cells(3).
Range.InsertAfter FormatCurrency(theArray(3,j))
objWordDoc.Application.ActiveDocument.Tables(1).Rows(tabRow).Cells(4).
Range.InsertAfter theArray(4,j)
objWordDoc.Application.ActiveDocument.Tables(1).Rows(tabRow).Cells(4).
Range.InsertAfter Chr(10)
objWordDoc.Applicatoin.ActiveDocument.Tables(1).Rows(tabRow).Cells(3).
Range.ParagraphFormat.alignment=2
tabRow = tabRow + 1
Next
%>
Finally, we finish up our document with some closing text and specifyi
ng the template's location, and then our subroutine.
<%
objWordDoc.Application.ActiveDocument.Paragraph.Add.Range.InsertAfter(
"Thank you for shopping at Acme Co., and please come again!")
objWordDoc.Application.ActiveDocument.Paragraph.Add.Range.InsertAfter(
" ")
objWordDoc.Application.ActiveDocument.Paragraph.Add.Range.InsertAfter(
" ")
objWordDoc.Application.ActiveDocument.Paragraph.Add.Range.InsertAfter(
"Regards,")
objWordDoc.Application.ActiveDocument.Paragraph.Add.Range.InsertAfter(
" ")
objWordDoc.Application.ActiveDocument.Paragraph.Add.Range.InsertAfter(
"Daryl B. Morticum")
objWordDoc.Application.ActiveDocument.Paragraph.Add.Range.InsertAfter(
"Sales Associate")
End Sub
%>
Hopefully this will get your gears spinning for ways you can do someth
ing similar. We are sure that we aren't the only people who have had a
need to create a document from a Web page's form. This is how we did
it. If you have a better way, or an improvement on or method, we would
love to hear from you.
栏目列表
最新更新
nodejs爬虫
Python正则表达式完全指南
爬取豆瓣Top250图书数据
shp 地图文件批量添加字段
爬虫小试牛刀(爬取学校通知公告)
【python基础】函数-初识函数
【python基础】函数-返回值
HTTP请求:requests模块基础使用必知必会
Python初学者友好丨详解参数传递类型
如何有效管理爬虫流量?
SQL SERVER中递归
2个场景实例讲解GaussDB(DWS)基表统计信息估
常用的 SQL Server 关键字及其含义
动手分析SQL Server中的事务中使用的锁
openGauss内核分析:SQL by pass & 经典执行
一招教你如何高效批量导入与更新数据
天天写SQL,这些神奇的特性你知道吗?
openGauss内核分析:执行计划生成
[IM002]Navicat ODBC驱动器管理器 未发现数据
初入Sql Server 之 存储过程的简单使用
这是目前我见过最好的跨域解决方案!
减少回流与重绘
减少回流与重绘
如何使用KrpanoToolJS在浏览器切图
performance.now() 与 Date.now() 对比
一款纯 JS 实现的轻量化图片编辑器
关于开发 VS Code 插件遇到的 workbench.scm.
前端设计模式——观察者模式
前端设计模式——中介者模式
创建型-原型模式