关于客户端用ASP参生报表

先贴一篇较简单的用ASP+RDS客户端参生报表
此文希望能进精华篇
下一回贴一篇较复杂的
说明:(若提示ActiveX 元件无法参生 RDS.DataSpace)
IE需设置安全选项
操作:菜单工具->INTERNET选项->安全性->自定义
设置 起始但ActiveX不标示为安全->开启
<html>
<head>
<META content="text/html; charset=gb2312" http-equiv=Content-Type>
<title>client use rds produce excel report</title>
<link rel="stylesheet" href="cdutmenu/common.css">
</head>
<body bgColor=skyblue topMargin=5 leftMargin="20" oncontextmenu="return false" rightMargin=0 bottomMargin="0">

<div align="center"><center>
<table border="1" bgcolor="#ffe4b5" style="HEIGHT: 1px; TOP: 0px" bordercolor="#0000ff">
<tr>
<td align="middle" bgcolor="#ffffff" bordercolor="#000080">
<font color="#000080" size="3">
client use rds produce excel report
</font>
</td>
</tr>
</table>
</div>

<form action="long.asp" method="post" name="myform">
<DIV align=left>
<input type="button" value="Query Data" name="query" language="vbscript" style="HEIGHT: 32px; WIDTH: 90px">
<input type="button" value="Clear Data" name="Clear" language="vbscript" style="HEIGHT: 32px; WIDTH: 90px">
<input type="button" value="Excel Report" name="report" language="vbscript" style="HEIGHT: 32px; WIDTH: 90px">
</div>
<DIV id="adddata"></div>
</form>
</body>
</html>

<script language="vbscript">
sub fun_excel(t)
Dim rds,rs,df
dim strCn,strSQL,StrRs
Dim xlApp, xlBook, xlSheet1

'use rds to produce client recordset
set rds = CreateObject("RDS.DataSpace")
Set df = rds.CreateObject("RDSServer.DataFactory","http://server name")
'the connection string to sql server to query database:pubs--->table:jobs
strCn="DRIVER={SQL Server};SERVER=server name;UID=sa;APP=Microsoft Development Environment;DATABASE=pubs;User Id=sa;PASSWORD=;"
'the query string of sql
strSQL = "Select top 8 * from jobs order by job_id"
'the recordset
Set rs = df.Query(strCn, strSQL)

if t=1 then
if not rs.eof then
StrRs="<table border=1><tr><td>job_id</td><td>job_desc</td><td>max_lvl</td><td>min_lvl</td></tr><tr><td>"+ rs.GetString(,,"</td><td>","</td></tr><tr><td>"," ") +"</td></tr></table>"
adddata.innerHTML=StrRs
StrRs=""
else
msgbox "No data in the table!"
end if
elseif t=2 then
StrRs=""
adddata.innerHTML=StrRs
elseif t=3 then
Set xlApp = CreateObject("EXCEL.APPLICATION")
Set xlBook = xlApp.Workbooks.Add
Set xlSheet1 = xlBook.Worksheets(1)
xlSheet1.cells(1,1).value ="the job table "
xlSheet1.range("A1:D1").merge
xlSheet1.cells(2,1).value = "job_id"
xlSheet1.cells(2,2).value = "job_desc"
xlSheet1.cells(2,3).value = "max_lvl"
xlSheet1.cells(2,4).value = "min_lvl"
cnt = 3
'adapt to office 97 and 2000
do while not rs.eof
xlSheet1.cells(cnt,1).value = rs("job_id")
xlSheet1.cells(cnt,2).value = rs("job_desc")
xlSheet1.cells(cnt,3).value = rs("max_lvl")
xlSheet1.cells(cnt,4).value = rs("min_lvl")
rs.movenext
cnt = cint(cnt) + 1
loop
xlSheet1.Application.Visible = True

'adapt to office 2000 only
'xlSheet1.Range("A3").CopyFromRecordset rs
'xlSheet1.Application.Visible = True
end if
end sub
</script>

时间: 2024-10-28 17:44:04

关于客户端用ASP参生报表的相关文章

一篇关于客户端用ASP参生报表的好东东

客户端 先贴一篇较简单的用ASP+RDS客户端参生报表 此文希望能进精华篇下一回贴一篇较复杂的说明:(若提示ActiveX 元件无法参生 RDS.DataSpace)IE需设置安全选项操作:菜单工具->INTERNET选项->安全性->自定义 设置  起始但ActiveX不标示为安全->开启   <html><head><META content="text/html; charset=gb2312" http-equiv=Cont

一篇关于客户端用ASP参生报表的好东东(高级篇)

高级|客户端 上回曾贴一篇较简单的用ASP+RDS客户端参生报表 此回贴一篇较复杂的用ASP+RDS+组件客户端参生报表 错误说明:(若提示ActiveX 元件无法参生 RDS.DataSpace)IE需设置安全选项操作:菜单工具->INTERNET选项->安全性->自定义 设置:起始但ActiveX不标示为安全->开启   原理说明:    客户端直接用RDS产生RecordSet安全性不够,使用了middle-tier Automation components 后可大大增加安

ASP参生报表客户端用

客户端 先贴一篇较简单的用ASP+RDS客户端参生报表 此文希望能进精华篇下一回贴一篇较复杂的说明:(若提示ActiveX 元件无法参生 RDS.DataSpace)IE需设置安全选项操作:菜单工具->INTERNET选项->安全性->自定义 设置 起始但ActiveX不标示为安全->开启 <html><head><META content="text/html; charset=gb2312" http-equiv=Content

ASP参生报表客户端用(高级篇)

高级|客户端 上回曾贴一篇较简单的用ASP+RDS客户端参生报表 此回贴一篇较复杂的用ASP+RDS+组件客户端参生报表 错误说明:(若提示ActiveX 元件无法参生 RDS.DataSpace)IE需设置安全选项操作:菜单工具->INTERNET选项->安全性->自定义 设置:起始但ActiveX不标示为安全->开启 原理说明:客户端直接用RDS产生RecordSet安全性不够,使用了middle-tier Automation components 后可大大增加安全性!请看下

先贴一篇较简单的用ASP+RDS客户端参生报表

上回曾贴一篇较简单的用ASP+RDS客户端参生报表 此回贴一篇较复杂的用ASP+RDS+组件客户端参生报表 错误说明:(若提示ActiveX 元件无法参生 RDS.DataSpace)IE需设置安全选项操作:菜单工具->INTERNET选项->安全性->自定义 设置:起始但ActiveX不标示为安全->开启 原理说明:客户端直接用RDS产生RecordSet安全性不够,使用了middle-tier Automation components 后可大大增加安全性!请看下文:编写注册元

一篇关于客户端用ASP+rds+VBA参生报表的好东东(高级篇)

asp+|高级|客户端 test_print_report.asp <html><head><meta content="text/html; charset=BIG5" http-equiv="Content-Type"><title>client use rds produce excel report</title></head><body bgColor="skyblue

客户端用ASP+rds+VBA参生报表

test_print_report.asp <html><head><meta content="text/html; charset=BIG5" http-equiv="Content-Type"><title>client use rds produce excel report</title></head><body bgColor="skyblue" topMa

把存储在SQL7的image字段的文件下载到客户端的ASP源代码

客户端|下载|源代码 把存储在SQL7的image字段的文件下载到客户端的ASP源代码 文 件 名:download.asp 使用方法:download.asp?fid=xxx说 明:把SQL7的image字段存储的文件下载到客户端数据库结构:[表名]tabimage {fid int not null;filename varchar(100) not null;filecontent image not null}fid:文件id [PK]:filename:文件名:filecontent:

asp.net 水晶报表-主从表关联问题

asp.net|水晶报表|问题 一.使用视图meeting将多表关联整合在一起 二.通过Sql语句筛选数据 三.建立和主从表的关联 四.注意在CrystalReport1表中插入子报表的时候,一定要将主从表的关联字段设置好,否则出乱子 主体代码如下: /// <summary>  /// Bind CrystalReport  /// </summary>  /// <param name="strS">sql</param>  priv