仓酷云

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

[学习教程] ASP网页编程之利用XML VBS手艺在ASP中完成报表的打印...

[复制链接]
飘飘悠悠 该用户已被删除
跳转到指定楼层
楼主
发表于 2015-1-16 22:50:15 | 只看该作者 回帖奖励 |倒序浏览 |阅读模式

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

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

x
国内有些大的CRM厂商的ASP就写得不错.无论是概念还是它里面用JAVASCRIPT的能力.并不是说现在的程序员用了ASP.NET来写程序就可以说自己高档了xml|打印1、媒介
ASP在电子商务上使用普遍,报表的处置又有一些贫苦。本文先容了在ASP中使用
自己写的ReportServerPage剧本注释器完成报表的显现、打印。
2、筹办事情
(1)安装VisualReprortDesign软件
VisualReportDesign是自己写的一个收费的报表计划器,程序的刊行只必要
安装一个控件便可。
想要的网友能够到http://go.163.com/reportpro/下载
(2)计划报表
经由过程VisualReportDesign的可视化界面能够天生报表的剧本:mxb.rsp。
3、完成报表的打印、显现
上面是挪用的文档:
printmx.asp
<%OptionExplicit%>
<%
dimReportName,ret
dimReportAtl
dimname
setReportAtl=Session("ReportAtl")
ReportName=Server.MapPath("mxb.rsp")
ret=reportatl.XMLToVBS(ReportName)
ifret=-1then
response.writereportatl.ErrorMsg
response.end
endif

ReportName=Server.MapPath("mxb.vbs")
ret=reportatl.DoScript(ReportName)
ifret=-1then
response.writereportatl.ErrorMsg
setReportAtl=nothing
response.end
endif
setReportAtl=nothing
%>
<html>
<OBJECTid=reportatlclassid="clsid:D3F064E5-F4C0-4C52-9E7F-263D96B7EA11"codebase="Report.cab#version=1,0,0,1">
</OBJECT>
<scriptlanguage=vbscript>
dimret
ret=reportatl.DoPrintReport("mxb.zcg")
ifret=-1then
msgboxreportatl.ErrorMsg
endif
</script>
</html>

用VisualReportDesign发生的报表剧本mxb.rsp:

<?xmlversion=1.0encoding=GB2312?>

<!DOCTYPEreportSYSTEMprint_report.dtd>

<reportname=报表>

<report_script>

dimrs,con,sql,lsh
dimtemp
setcon=CreateObject("ADODB.Connection")
con.ConnectionString="DBQ=c:eportdemoaspeport.mdb;DRIVER={MicrosoftAccessDriver(*.mdb)};"
con.open
Setrs=CreateObject("ADODB.Recordset")
sql="SELECT*FROMcj,studentwherecj.id=student.id"
rs.opensql,con,1,3

</report_script>

<report_headheight=12>

<textname=vfptexttop=4left=76width=26height=5font_name=宋体font_size=14font_weight=700font_italic=0font_underline=0>

成就明细表

</text>

</report_head>

<page_headheight=6>

<linename=vfplinetop=0left=9width=178height=0weight=131072>

</line>

<linename=vfplinetop=6left=9width=178height=0weight=131072>

</line>

<textname=vfptexttop=2left=18width=6height=3font_name=宋体font_size=9font_weight=700font_italic=0font_underline=0>

姓名

</text>

<textname=vfptexttop=2left=46width=6height=3font_name=宋体font_size=9font_weight=700font_italic=0font_underline=0>

语文

</text>

<textname=vfptexttop=2left=72width=6height=3font_name=宋体font_size=9font_weight=700font_italic=0font_underline=0>

数学

</text>

<textname=vfptexttop=2left=99width=6height=3font_name=宋体font_size=9font_weight=700font_italic=0font_underline=0>

英语

</text>

<textname=vfptexttop=2left=162width=6height=3font_name=宋体font_size=9font_weight=700font_italic=0font_underline=0>

算计

</text>

<textname=vfptexttop=2left=130width=6height=3font_name=宋体font_size=9font_weight=700font_italic=0font_underline=0>

均匀

</text>

</page_head>

<page_bodyheight=8>

<textname=vfptexttop=2left=15width=25height=4font_name=宋体font_size=9font_weight=100font_italic=0font_underline=0>

<report_script>

Report.Writecstr(rs("xm"))

</report_script>

</text>

<textname=vfptexttop=2left=45width=18height=4font_name=宋体font_size=9font_weight=100font_italic=0font_underline=0>

<report_script>

Report.Writecstr(rs("yw"))

</report_script>

</text>

<textname=vfptexttop=2left=71width=18height=4font_name=宋体font_size=9font_weight=100font_italic=0font_underline=0>

<report_script>

Report.Writecstr(rs("sx"</p>asp是基于web的一种编程技术,可以说是cgi的一种。它可以完成以往cgi程序的所有功能,如计数器、留言簿、公告板、聊天室等等。
admin 该用户已被删除
沙发
发表于 2015-1-20 05:18:15 | 只看该作者
Response:从字面上讲是“响应”,因此这个是服务端向客户端发送东西的,例如Response.Write
深爱那片海 该用户已被删除
板凳
发表于 2015-1-20 05:18:15 | 只看该作者
完全不知道到底自己学的是什么。最后,除了教程里面说的几个例子,还是什么都不会。
乐观 该用户已被删除
地板
发表于 2015-1-28 06:43:47 | 只看该作者
兴趣爱好,那么你无须学编程,申请一个域名和空间,在网上下载一些免费开源的CMS系统,你不用改代码,只须熟悉它们的后台操作,像office一样简单方便,很快就能建一个站点,很多站长都是这样做的
兰色精灵 该用户已被删除
5#
发表于 2015-2-5 13:47:19 | 只看该作者
我认为比较好的方法是找一些比较经典的例子,每个例子比较集中一种编程思想而设计的。
莫相离 该用户已被删除
6#
发表于 2015-2-11 22:36:05 | 只看该作者
我就感觉到ASP和一些常用的数据库编程以及软件工程方面的思想是非常重要的。我现在也在尝试自己做网页,这其中就用到了ASP,我想它的作用是可想而知的。
活着的死人 该用户已被删除
7#
发表于 2015-3-2 19:53:54 | 只看该作者
完全不知道到底自己学的是什么。最后,除了教程里面说的几个例子,还是什么都不会。
小魔女 该用户已被删除
8#
发表于 2015-3-11 05:51:46 | 只看该作者
兴趣爱好,那么你无须学编程,申请一个域名和空间,在网上下载一些免费开源的CMS系统,你不用改代码,只须熟悉它们的后台操作,像office一样简单方便,很快就能建一个站点,很多站长都是这样做的
飘飘悠悠 该用户已被删除
9#
 楼主| 发表于 2015-3-17 21:49:14 | 只看该作者
尽管MS自己讲C#内核中更多的象VC,但实际上我还是认为它和Java更象一些吧。首先它是面向对象的编程语言,而不是一种脚本,所以它具有面向对象编程语言的一切特性,比如封装性、继承性、多态性等等,这就解决了刚才谈到的ASP的那些弱点。
变相怪杰 该用户已被删除
10#
发表于 2015-3-25 03:28:20 | 只看该作者
尽管MS自己讲C#内核中更多的象VC,但实际上我还是认为它和Java更象一些吧。首先它是面向对象的编程语言,而不是一种脚本,所以它具有面向对象编程语言的一切特性,比如封装性、继承性、多态性等等,这就解决了刚才谈到的ASP的那些弱点。
您需要登录后才可以回帖 登录 | 立即注册

本版积分规则

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

GMT+8, 2025-1-9 05:15

Powered by Discuz! X3.2

© 2001-2013 Comsenz Inc.

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