ASP教程之轻松完成报表的打印 (转)
缺点:正版成本价格贵(盗版就不说了)、不够安全,大多数服务器用windows系统,没有linux安全打印作者:zcg20001、媒介
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=</p>对用户来说可预见费用、节约费用,可以做到花少钱办大事。由于省去了购买软件和硬件等的前期费用,用户可以租用较高级的应用软件。ASP的收费是根据软件的类型、客制化程度、用户数量、服务期限来定的,对客户来说这笔费用是可以预见的。方便于客户应用软件的升级。 我们必须明确一个大方向,不要只是停留在因为学而去学,我们应有方向应有目标. Server:这个表示的服务器,操作服务器的一些东西使用这个,如Server.Mappath转换服务器路径,Server.CreateObject实例化一个组件 他的语法和设计思路和VB完全相同,导致很多ASP的书都留一句“相关内容请参考VB的相关教材....”更糟糕的是,相当多的ASP教程混合了Javascript,VBscript等等脚本语言,搞的初学者。 代码逻辑混乱,难于管理:由于ASP是脚本语言混合html编程,所以你很难看清代码的逻辑关系,并且随着程序的复杂性增加,使得代码的管理十分困难,甚至超出一个程序员所能达到的管理能力,从而造成出错或这样那样的问题。 Response:从字面上讲是“响应”,因此这个是服务端向客户端发送东西的,例如Response.Write 不是很难但是英文要有一点基础网上的教程很少有系统的详细的去买书吧,另不用专门学习vb关于vbscript脚本在asp教材都有介绍 我想问如何掌握学习节奏(先学什么再学什么)最好详细点? 没有坚实的理论做基础,那么我们连踏入社会第一步的资本都没有,特别对于计算机专业的学生学好专业知识是置关重要的。在这里我侧重讲一下如何学习ASP,从平时的学习过程中。
页:
[1]