仓酷云

 找回密码
 立即注册
搜索
热搜: 活动 交友 discuz
查看: 417|回复: 8
打印 上一主题 下一主题

[学习教程] ASP教程之用ASP创立Word文件

[复制链接]
变相怪杰 该用户已被删除
跳转到指定楼层
楼主
发表于 2015-1-16 23:46:20 | 只看该作者 回帖奖励 |倒序浏览 |阅读模式

马上注册,结交更多好友,享用更多功能,让你轻松玩转社区。

您需要 登录 才可以下载或查看,没有帐号?立即注册

x
强大的可扩展性。ASP具有强大的扩展性,可以实现与多种网络、硬件设备的连接:通过专用的通讯线路远程接入企业;通过远程拨号服务器为远程拨号客户提供服务;通过WAP为移动电话互联网客户服务。word|创立|wordUsingActiveServerPagestoBuildMicrosoftWordDocuments
ByGardinerB.Jones

Background
BuildDoc.aspisanActiveServerPage(ASP)thatreadstheoutputofa

Webpageform,andcreatesasoutputaMicrosoftWorddocumentcontai

ningatableofchangeddatawithintheform.Formsarenolongerlimi

tedtocontainingstaticinformation.Withdatabaseconnectivity,the

increasinguseofDynamicHTML(DHTML),andthegrowinginterestinXM

L,ithasbecomecommonpracticeinbusinessWebpagesforthedataco

ntainedinthemtobedynamic.Thatis,whatisshownintheformmay

changebasedonuserinteraction(seethesampleinputformbelow).



ThebusinessneedfilledbyBuildDocistoenablesalesassociatesto

createformlettersfromthechangedrecordsofaWebpagetable.Only

thedatamodifiedbythesalespersonissenttoWord,whereitisfo

rmattedintoatable.Obviously,allsamplesherearefictitious.

BuildDocwillreadalloftheinformationontheform,identifyingwhi

chrowshavebeenchanged,andthencreatestheMicrosoftWorddocumen

tusingonlytheinformationcontainedwithinthechangedrows(seeth

esampleoutputdocumentbelow).BuildDocusesatemplatefile(buildD

oc.dot)thatcontainstheaddressheader,andsomepreformattedtext.

Itthenwritesatableintothedocumentthathasarowforeachmodif

iedrowfromtheWebpageform.



HowToDoIt
WestartbyreadingalloftheWebpageformfieldsintohiddenformf

ieldsonthereceivingWebpage.Inthesourcecodebelow,notethe"

onLoad"callinthebodytag.ItcallsthebuildDocVBScriptsubrouti

ne,passingthreeparameterstoit:thecontentsofthepagesform(a

llthehiddenfields),thelocationoftheWordtemplatefile,andthe

numberofrowsreceivedfromtheinputform.Theinputformfieldsar

eallreadandthen,whenthepageloads,itcallsthebuildDocsubrou

tine.Forthesakeofbrevity,wewillassumethatallvariableshave

beenfirstdeclaredbeforeuse.

ThecodefortheloadingoftheinputformfieldsintobuildDoc.aspis

thus:-

<!DOCTYPEHTMLPUBLIC"-//W3C/DTDHTML3.2Final//EN">
<HEAD>
<TITLE>BuildDocument</TITLE>
<METAHTTP-EQUIV="Refresh"CONTENT="30;URL=orderForm.asp">
</HEAD>
<%
dotLocation="servernamedirectory        heTemplate.dot"
intRowCount=Request.Form("rowCount")initializearowcounter
%>
<BODYLanguage="VBScript"theForm">
<%
itemCount=0setfieldcountertozero
ForEachIteminRequest.Formcountuptheformfields
itemCount=itemCount+1usingFor..Nextloop
%>
<INPUTTYPE="hidden"NAME="<%=Item%>"VALUE="<%=Request(Item)%>">
<%Next%>
<INPUTTYPE="hidden"NAME="numbRows"VALUE="<%=intRowCount%>">
<INPUTTYPE="hidden"NAME="fieldCount"VALUE="<%=itemCount%>">
</FORM>
</BODY>
</HTML>
WecreateaninstanceoftheWordDocumentobject,usingthesampleco

deimmediatelybelow.NotethatinInternetExplorer4+thiswillfail

unlessthebrowsersecurityissettoLow,orCustomwiththeappropr

iatesettingtorunprograms.

<%
SetobjWordDoc=CreateObject("Word.Document")
ObjWordDoc.Application.Documents.AddtheTemplate,False
ObjWordDoc.Application.Visible=True
%>
Were-dimensionourarraysothatitisthesamesizeasthenumberof

rowsthatarecontainedintheWebpagesform.Inthiscase,weset

theY-axistoaconstantvalueoffourbecausethatisthenumberofc

olumnsweneedintheoutputdocument.TheX-axiscontainsthenumber

ofreceivedrowsfromtheform.

<%
RedimPreservetheArray(4,intTableRows)
%>
Nowwearereadytoexaminealloftheformrows.Wedothisbyloopin

gthroughalltheinputWebpageformfieldstocollecteachformfiel

dnameandcorrespondingvalue.Wetesteachtodeterminewhicharray

elementtoputitinto,andthenweputitthere.TheSELECTCASEstat

ementinthecodesample</p>强大的可扩展性。ASP具有强大的扩展性,可以实现与多种网络、硬件设备的连接:通过专用的通讯线路远程接入企业;通过远程拨号服务器为远程拨号客户提供服务;通过WAP为移动电话互联网客户服务。
山那边是海 该用户已被删除
沙发
发表于 2015-1-20 11:43:47 | 只看该作者
学习ASP其实应该上升到如何学习程序设计这种境界,其实学习程序设计又是接受一种编程思想。比如ASP如何学习,你也许在以前的学习中碰到过。以下我仔细给你说几点:
若相依 该用户已被删除
板凳
发表于 2015-1-20 17:06:23 | 只看该作者
不是很难但是英文要有一点基础网上的教程很少有系统的详细的去买书吧,另不用专门学习vb关于vbscript脚本在asp教材都有介绍
飘灵儿 该用户已被删除
地板
发表于 2015-1-26 10:00:41 | 只看该作者
Application:这个存储服务端的数据,如果不清除,会直到web应用程序结束才清除(例如重启站点)
第二个灵魂 该用户已被删除
5#
发表于 2015-2-4 13:41:35 | 只看该作者
我们必须明确一个大方向,不要只是停留在因为学而去学,我们应有方向应有目标.
若天明 该用户已被删除
6#
发表于 2015-2-10 00:11:03 | 只看该作者
虽然ASP也有很多网络教程。但是这些都不系统。都是半路出家,只是从一个例子告诉你怎么用。不会深入讨论,更不会将没有出现在例子里的方法都一一列举出来。
透明 该用户已被删除
7#
发表于 2015-3-9 21:58:12 | 只看该作者
如何更好的使自己的东西看上去很不错等等。其实这些都不是问题的实质,我们可以在实践中不断提升自己,不断充实自己。
谁可相欹 该用户已被删除
8#
发表于 2015-3-17 02:07:54 | 只看该作者
不是很难但是英文要有一点基础网上的教程很少有系统的详细的去买书吧,另不用专门学习vb关于vbscript脚本在asp教材都有介绍
莫相离 该用户已被删除
9#
发表于 2015-3-23 12:42:53 | 只看该作者
ASP也是这几种脚本语言中最简单易学的开发语言。但ASP也是这几种语言中唯一的一个不能很好支持跨平台的语言。  因为ASP脚本语言非常简单,因此其代码也简单易懂,结合HTML代码,可快速地完成网站的应用程序。
您需要登录后才可以回帖 登录 | 立即注册

本版积分规则

QQ|Archiver|手机版|仓酷云 鄂ICP备14007578号-2

GMT+8, 2024-12-24 03:57

Powered by Discuz! X3.2

© 2001-2013 Comsenz Inc.

快速回复 返回顶部 返回列表