仓酷云

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

[学习教程] ASP网站制作之ASP情况下轻松完成报表的打印

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

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

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

x
缺点:安全性不是太差了,还行,只要你充分利用系统自带的工具;唯一缺点就是执行效率慢,如何进行网站优化以后,效果会比较好。打印1、媒介
ASP在电子商务上使用普遍,报表的处置又有一些贫苦。本文先容了在ASP中使用
自己写的ReportServerPage剧本注释器完成报表的显现、打印。
2、筹办事情
(1)安装VisualReprortDesign软件
VisualReportDesign是自己写的一个收费的报表计划器,程序的刊行只必要
安装一个60K的控件便可。
想要的网友能够到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_w</p>因为ASP脚本语言非常简单,因此其代码也简单易懂,结合HTML代码,可快速地完成网站的应用程序。还无法完全实现一些企业级的功能:完全的集群、负载均横。
再见西城 该用户已被删除
沙发
发表于 2015-1-20 05:18:16 | 只看该作者
Session:这个存储跟客户端会话过程的数据,默认20分钟失效
不帅 该用户已被删除
板凳
发表于 2015-1-25 21:14:10 | 只看该作者
如何学好ASP,以前也有人问过,把回答给你转过来看看能否对你有帮助:
若相依 该用户已被删除
地板
发表于 2015-2-4 01:42:53 | 只看该作者
在平时的学习过程中要注意现学现用,注重运用,在掌握了一定的基础知识后,我们可以尝试做一些网页,也许在开始的时候我们可能会遇到很多问题,比如说如何很好的构建基本框架。
透明 该用户已被删除
5#
发表于 2015-2-9 09:31:02 | 只看该作者
交流是必要的,不管是生活还是学习我们都要试着去交流,通过交流我们可以学到很多我们自己本身所没有的知识,可以分享别人的经验甚至经历。
因胸联盟 该用户已被删除
6#
发表于 2015-2-27 05:18:02 | 只看该作者
掌握asp的特性而且一定要知道为什么。
飘飘悠悠 该用户已被删除
7#
发表于 2015-3-8 22:07:54 | 只看该作者
先学习用frontpage熟悉html编辑然后学习asp和vbscript建议买书进行系统学习
再现理想 该用户已被删除
8#
发表于 2015-3-16 15:47:39 | 只看该作者
如何更好的使自己的东西看上去很不错等等。其实这些都不是问题的实质,我们可以在实践中不断提升自己,不断充实自己。
admin 该用户已被删除
9#
发表于 2015-3-22 23:23:29 | 只看该作者
尽管MS自己讲C#内核中更多的象VC,但实际上我还是认为它和Java更象一些吧。首先它是面向对象的编程语言,而不是一种脚本,所以它具有面向对象编程语言的一切特性,比如封装性、继承性、多态性等等,这就解决了刚才谈到的ASP的那些弱点。
您需要登录后才可以回帖 登录 | 立即注册

本版积分规则

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

GMT+8, 2024-12-24 04:09

Powered by Discuz! X3.2

© 2001-2013 Comsenz Inc.

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