dbeditor.asp

来自「ASP+SQL Server动态网站开发从基础到实践教程」· ASP 代码 · 共 36 行

ASP
36
字号
<%@ Language=VBScript %>
<%Response.buffer=true
Level=1%>
<!--#include File ="includes/check.inc"-->
<HTML>
<HEAD>
		<meta http-equiv="content-type" content="text/html;charset=gb2312">
		<title>aspEdit</title>
		<link rel=stylesheet type="text/css" href="styles/style.css">
	</HEAD>


<BODY>
		<div align="center">
			<!--#include File ="includes/banner.inc"-->[<a href="javascript:parent.close()">Close 
			Window (File not saved!)</a>]
<hr></div>
		<%
Path=request.querystring("Path")
Action=request.querystring("Action")
If Action="" then Action="ShowTables"
Path = Server.MapPath(Path)
Set DB=Server.CreateObject("ADODB.Connection")
DB.Open "driver={Microsoft Access Driver (*.mdb)};dbq="&Path
Select Case Action
Case "ShowTables"


End Select

DB.Close
Set DB=Nothing
%>In this Version of aspEdit the Database-Editor isn't fully supported. Visit my <a href="http://saxsucks.go.cc" target="_blank">
		WebSite</a> for the latest Version.
	</BODY>
</HTML>

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?