代码语言
.
CSharp
.
JS
Java
Asp.Net
C
MSSQL
PHP
Css
PLSQL
Python
Shell
EBS
ASP
Perl
ObjC
VB.Net
VBS
MYSQL
GO
Delphi
AS
DB2
Domino
Rails
ActionScript
Scala
代码分类
文件
系统
字符串
数据库
网络相关
图形/GUI
多媒体
算法
游戏
Jquery
Extjs
Android
HTML5
菜单
网页交互
WinForm
控件
企业应用
安全与加密
脚本/批处理
开放平台
其它
【
ASP
】
打开任意数据表并显示表结构及内容
作者:
/ 发布于
2011/1/5
/
977
<div>'************************************************** '函数ID:0003[打开任意数据表并显示表结构及内容] '函数名:OpOtherDB '作 用:打开任意数据表并显示表结构及内容 '参 数:DBtheStr ---- 要打开表的数据库链接字串 '参 数:Opentdname ---- 要打开表名 '返回值:显示表结构及内容 '************************************************** Public Function OpOtherDB(ByVal DBtheStr,ByVal Opentdname) Response.write "<table border='0' width='100%' cellspacing='0' cellpadding='0'>" & vbCrlf Set Opdb_Conn=server.createobject("ADODB.Connection") Set Opdb_Rs =server.createobject("ADODB.Recordset") Opdb_Conn.open DBtheStr Opdb_sql_str="select * from "&Opentdname Opdb_Rs.open Opdb_Sql_Str,Opdb_Conn,1,1 Nfieldnumber=Opdb_Rs.Fields.count If Nfieldnumber >0 then Response.write "<tr>" & vbCrlf For i=0 to (Nfieldnumber-1) Response.write "<td style='border-style: ridge; border-width: 1' bgcolor='#E1E1E1' valign='middle' align='center'>" Response.write Trim(Opdb_Rs.Fields(i).Name) Response.write "</td>" & vbCrlf Next temptbi=0 Do While Not Opdb_Rs.Eof Response.write "</tr>" & vbCrlf For i=0 to (Nfieldnumber-1) If (temptbi<2) Then Response.write "<td style='border-style: ridge; border-width: 1' bgcolor='#F6F6F6' valign='middle'>" Response.write Trim(Opdb_Rs.Fields(i)) Response.write "</td>" & vbCrlf temptbi=temptbi+1 Else Response.write "<td style='border-style: ridge; border-width: 1' valign='middle'>" Response.write Trim(Opdb_Rs.Fields(i)) Response.write "</td>" & vbCrlf If temptbi>=3 Then temptbi=0 Else temptbi=temptbi+1 End If End If Next Opdb_Rs.MoveNext Response.write "</tr>" & vbCrlf Loop End If Opdb_Rs.Close Opdb_Conn.Close Set Opdb_Rs = Nothing Set Opdb_Conn=Nothing Response.write "</table>" & vbCrlf End function </div>
试试其它关键字
同语言下
.
二进制输出
.
查找text文本中指定字符或词所在句子
.
阻止浏览器冒泡事件,兼容firefox和ie
.
xmlhttp 读取文件
.
定时跳转页面
.
除asp中所有超链接
.
获取Session
.
打包时自定义应用程序的快捷方式与卸载
.
获取局域网中可用SQL Server服务器
.
判断汉字字数
可能有用的
.
二进制输出
.
查找text文本中指定字符或词所在句子
.
阻止浏览器冒泡事件,兼容firefox和ie
.
xmlhttp 读取文件
.
定时跳转页面
.
除asp中所有超链接
.
获取Session
.
打包时自定义应用程序的快捷方式与卸载
.
获取局域网中可用SQL Server服务器
.
判断汉字字数
贡献的其它代码
Label
Copyright © 2004 - 2024 dezai.cn. All Rights Reserved
站长博客
粤ICP备13059550号-3