仓酷云 发表于 2015-1-16 22:45:56

ASP编程:怎样用asp把sql server数据转化为execl...

asp对于服务器的要求较高,一般的服务器如果访问量一大就垮了,不得不重启。server|数据1、ASP文件:

<%@LANGUAGE="VBSCRIPT"%>
<%optionexplicit%>
<%
EXAMPLEAS:把数据库中一个天天24小时在耳目数放到一个EXCEL文件中往
AUTHOR:钢铁工人
EMAIL:hello_hhb@21cn.com
DATE:2001-3-25
TEST:在NT4,SP6,SQLSERVER7.0,EXCEL2000中测试经由过程
%>
<HTML>
<HEAD>
<metacontent="text/html;charset=gb2312"http-equiv="Content-Type">
<TITLE>天生EXCEL文件</TITLE>
</HEAD>
<body>
<ahref="dbtoexcel.asp?act=make">天生在耳目口的EXCEL</a>
<hrsize=1align=leftwidth=300px>
<%
ifRequest("act")=""then
else

dimconn
setconn=server.CreateObject("adodb.connection")
conn.Open"test","sa",""
conn.OpenApplication("connstr")

dimrs,sql,filename,fs,myfile,x,link

Setfs=server.CreateObject("scripting.filesystemobject")
--假定你想让天生的EXCEL文件做以下的寄存
filename="c:online.xls"
--假如本来的EXCEL文件存在的话删除它
iffs.FileExists(filename)then
fs.DeleteFile(filename)
endif
--创立EXCEL文件
setmyfile=fs.CreateTextFile(filename,true)



Setrs=Server.CreateObject("ADODB.Recordset")
--从数据库中把你想放到EXCEL中的数据查出来
sql="selectpopulation,hourpos,dateposfrompopulationperhourorderbydatepos,hourposasc"
rs.Opensql,conn
ifrs.EOFandrs.BOFthen

else

dimstrLine,responsestr
strLine=""
Foreachxinrs.fields
strLine=strLine&x.name&chr(9)
Next

--将表的列名先写进EXCEL
myfile.writelinestrLine

DowhileNotrs.EOF
strLine=""

foreachxinrs.Fields
strLine=strLine&x.value&chr(9)
next
--将表的数据写进EXCEL
myfile.writelinestrLine

rs.MoveNext
loop

endif

rs.Close
setrs=nothing
conn.close
setconn=nothing
setmyfile=nothing
Setfs=Nothing

link="<AHREF="&filename&">OpenTheExcelFile</a>"
Response.writelink
endif
%>
</BODY>
</HTML>


2、数据库相干:

CREATETABLE(
NOTNULL,
NOTNULL,
NOTNULL
);
insertintopopulationperhourvalues(936,1,2001-1-11);
insertintopopulationperhourvalues(636,2,2001-1-11);
insertintopopulationperhourvalues(106,3,2001-1-11);
insertintopopulationperhourvalues(177,4,2001-1-11);
insertintopopulationperhourvalues(140,5,2001-1-11);
insertintopopulationperhourvalues(114,6,2001-1-11);
insertintopopulationperhourvalues(94,7,2001-1-11);
insertintopopulationperhourvalues(49,8,2001-1-11);
insertintopopulationperhourvalues(88,9,2001-1-11);
insertintopopulationperhourvalues(215,10,2001-1-11);
insertintopopulationperhourvalues(370,11,2001-1-11);
insertintopopulationperhourvalues(550,12,2001-1-11);
insertintopopulationperhourvalues(629,13,2001-1-11);
insertintopopulationperhourvalues(756,14,2001-1-11);
insertintopopulationperhourvalues(833,15,2001-1-11);
insertintopopulationperhourvalues(923,16,2001-1-11);
insertintopopulationperhourvalues(980,17,2001-1-11);
insertintopopulationperhourvalues(957,18,2001-1-11);
insertintopopulationperhourvalues(812,19,2001-1-11);
insertintopopulationperhourvalues(952,20,2001-1-11);
insertintopopulationperhourvalues(1379,21,2001-1-11);
insertintopopulationperhourvalues(1516,22,2001-1-11);
insertintopopulationperhourvalues(1476,23,2001-1-11);
insertintopopulationperhourvalues(1291,24,2001-1-11);
insertintopopulationperhourvalues(1028,1,2001-1-12);
insertintopopulationperhourvalues(687,2,2001-1-12);
insertintopopulationperhourvalues(462,3,2001-1-12);
insertintopopulationperhourvalues(317,4,2001-1-12);
insertintopopulationperhourvalues(221,5,2001-1-12);
insertintopopulationperhourvalues(158,6,2001-1-12);
insertintopo</p>我想详细了解ASP整站代码与PSP整站代码有什么优缺点,那个更好,更安全,更用容易维护,和管理。。。

admin 发表于 2015-1-19 23:04:35

代码的可重用性差:由于是面向结构的编程方式,并且混合html,所以可能页面原型修改一点,整个程序都需要修改,更别提代码重用了。

活着的死人 发表于 2015-1-25 19:35:07

没有坚实的理论做基础,那么我们连踏入社会第一步的资本都没有,特别对于计算机专业的学生学好专业知识是置关重要的。在这里我侧重讲一下如何学习ASP,从平时的学习过程中。

山那边是海 发表于 2015-2-3 17:24:39

Session:这个存储跟客户端会话过程的数据,默认20分钟失效

再现理想 发表于 2015-2-9 04:13:38

另外因为asp需要使用组件,所以了解一点组件的知识(ADODB也是组件)

兰色精灵 发表于 2015-2-26 21:30:32

在平时的学习过程中要注意现学现用,注重运用,在掌握了一定的基础知识后,我们可以尝试做一些网页,也许在开始的时候我们可能会遇到很多问题,比如说如何很好的构建基本框架。

若相依 发表于 2015-3-8 17:59:32

ASP.Net摆脱了以前ASP使用脚本语言来编程的缺点,理论上可以使用任何编程语言包括C++,VB,JS等等,当然,最合适的编程语言还是MS为.NetFrmaework专门推出的C(读csharp),它可以看作是VC和Java的混合体吧。

柔情似水 发表于 2015-3-16 09:25:20

没有坚实的理论做基础,那么我们连踏入社会第一步的资本都没有,特别对于计算机专业的学生学好专业知识是置关重要的。在这里我侧重讲一下如何学习ASP,从平时的学习过程中。

乐观 发表于 2015-3-22 22:08:30

ASP.Net和ASP的最大区别在于编程思维的转换,而不仅仅在于功能的增强。ASP使用VBS/JS这样的脚本语言混合html来编程,而那些脚本语言属于弱类型、面向结构的编程语言,而非面向对象,这就明显产生以下几个问题:
页: [1]
查看完整版本: ASP编程:怎样用asp把sql server数据转化为execl...