一篇关于客户端用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" topMargin=0 leftMargin="20" oncontextmenu="return false" rightMargin="0" bottomMargin="0">
<form action="test_print_report.asp" method="post" name="myform">
<div align="center"><center>        
<table border="5" 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>
<div align="left">
<input type="button" value="Query Data" name="query" language="vbscript" onclick="fun_query()" style="HEIGHT: 32px; WIDTH: 90px">
<input type="button" value="Clear Data" name="Clear" language="vbscript" onclick="fun_clear()" style="HEIGHT: 32px; WIDTH: 90px">
<input type="button" value="Excel Report" name="report" language="vbscript" onclick="fun_excel()" style="HEIGHT: 32px; WIDTH: 90px">
</div>
<div id="adddata"></div>
</form></center>
</body>
</html>
<script language="vbscript">
dim rds,rs,df    
dim strSQL,StrRs,strCn,RowCnt
dim xlApp, xlBook, xlSheet1,xlmodule,XlPageSetup
dim HeadRowCnt,TitleRowCnt,ContentRowCnt,FootRowCnt
dim PageRowCnt,PageNo,TotalPageCnt,ContentRowNowCnt
dim ColumnAllWidth,ColumnAWidth,ColumnBWidth,ColumnCWidth,ColumnDWidth

sub fun_query()
    set rds = CreateObject("RDS.DataSpace")
    Set df = rds.CreateObject("RDSServer.DataFactory","http://iscs00074")
    strCn="DRIVER={SQL Server};SERVER=iscs00074;UID=sa;APP=Microsoft Development Environment;DATABASE=pubs;User Id=sa;PASSWORD=;"
    strSQL = "Select * from jobs"
    Set rs = df.Query(strCn, strSQL)
     
    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
end sub
    
sub fun_clear()
    StrRs=""
    adddata.innerHTML=StrRs
end sub    

sub fun_excel()
    set rds = CreateObject("RDS.DataSpace")
    Set df = rds.CreateObject("RDSServer.DataFactory","http://iscs00074")
    strCn="DRIVER={SQL Server};SERVER=iscs00074;UID=sa;APP=Microsoft Development Environment;DATABASE=pubs;User Id=sa;PASSWORD=;"
    strSQL = "Select count(*) as recordcnt from jobs"
     Set rs = df.Query(strCn, strSQL)
    TotalPageCnt=rs("recordcnt")
   &n

时间: 2024-11-08 19:13:18

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

客户端用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

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

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

关于客户端用ASP参生报表

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

ASP参生报表客户端用

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

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

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

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

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

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

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

asp.net用url重写URLReWriter实现任意二级域名 高级篇_实用技巧

 我最近写了个小例子,大家可以先看这个,里面有小例子的完整代码下载 http://www.jb51.net/article/20906.htm 好久没有写技术文章,如果大家看不明白,就多看几篇,汗,或者,在文章的后面回复(这是最有效的办法),我会尽力帮助大家解答疑惑. 来找这篇文章的,应该都知道什么叫二级域名吧,废话就不说了.但是讨论前,先要明白一个思想问题.很多朋友一直考虑不清(我前几天也一直搞不明白)的问题是,我键入一个地址后,怎么这个url就被重写了?第一步:在浏览器键入了一个地址,比如h

把存储在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: