网站导航网学 原创论文 原创专题 网站设计 最新系统 原创论文 论文降重 发表论文 论文发表 UI设计定制 论文答辩PPT格式排版 期刊发表 论文专题
返回网学首页
网学原创论文
最新论文 推荐专题 热门论文 论文专题
当前位置: 网学 > 交易代码 > ASP精品代码 > 正文

解决ASP导出查询结果到Excel中的身份证号问题

论文降重修改服务、格式排版等 获取论文 论文降重及排版 论文发表 相关服务

近日在用asp把access数据库的查询结果导出为excel文件时,出现一点问题,因为有一个字段是身份证号码,在导出的excel文件中,所有身份证号后3位全部变成0了!真是郁闷啊!网上查了一下才知道是excel默认的数字格式是"常规",只能正常显示输入的11位数字,超过11位就用科学记数法显示了。
为了解决这个问题,我只能把查询的数据标识成文本型数据,下面是部份代码:
<%
''导出到excel
set rs = server.createobject("adodb.recordset")
sqlstr="select * from tabname where"&searhsql ''查询语句
rs.open sqlstr,oconn,1,3
%>
<%set fs = server.createobject("script_ing.filesystemobject")
''存放文件
filename="info.xls"
temp=filename
filename=request.servervariables("appl_physical_path")&"&#92;"+filename
''删除存在的excel文件
''if fs.fileexists(filename) then
''fs.deletefile(filename)
''end if
''-创建excel文件
set myfile = fs.createtextfile(filename,true)
dim strline,responsestr
strline=""
for each x in rs.fields
strline= strline & x.name & chr(9)
next
''将表的列名先写入excel
myfile.writeline strline
while not rs.eof
strline=""
for each x in rs.fields
''这里把数据标识成文本类型
strline= strline & "="""&x.value &""""& chr(9)
next
''将表的数据写入excel
myfile.writeline strline
rs.movenext
wend
link="<a href=&#92;" & temp & " title=将数据保存至eecel表中><font color=red><b>导出excel文件</b></font></a>"
response.write link
set myfile = nothing
set fs=nothing
rs.close
%>

  • 上一篇资讯: Web在线代理(Asp版)
  • 设为首页 | 加入收藏 | 网学首页 | 原创论文 | 计算机原创
    版权所有 网学网 [Myeducs.cn] 您电脑的分辨率是 像素
    Copyright 2008-2020 myeducs.Cn www.myeducs.Cn All Rights Reserved 湘ICP备09003080号 常年法律顾问:王律师