ASP 辅助工具(hta版)
2024-08-26 00:15:41
供稿:网友
使用方法:保存为ASPTools.hta然后再运行
代码如下:
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-
transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=gb2312" />
<meta name="author" content="柳永法" />
<title>ASP辅助工具</title>
<style>body{ font-size:12px}</style>
<HTA:APPLICATION
ID="ASPTools"
APPLICATIONNAME="ASPTools"
SCROLL="no"
SINGLEINSTANCE="yes"
WINDOWSTATE="normal"
>
</head>
<body>
<div>
<input type="file" id="txtFile" onchange="CreateTableSelect('ACCESS')" style="display:none" />
IP:<input type="text" name="IP" size="16" style="border:1px solid green" value="./sql2005" />
登录名:<input type="text" name="UserID" size="10" style="border:1px solid green" value="sa" />
密码:<input type="password" name="pwd" size="10" style="border:1px solid green" value="yongfa365" />
数据库名:<input type="text" name="dbname" size="10" style="border:1px solid green" value="hb605-8-8" /><br />
<input name="button2" type="button" id="button2" style="border:1px solid green" onclick="CreateTableSelect
('MSSQL')" value="连接SQL数据库" />
<input type="button" id="btnFromFile" onclick="txtFile.click()" value="连接ACCESS数据库" style="border:1px solid
green" />
<span id="Tables" ></span>
<hr />
模板:
<input type="text" id="opt" value="" size="40" />
<select size="1" id="fz" onchange="opt.value=this.value" style="width:200px"></select>
<input name="button" type="button" id="button" onclick="c()" value="转换" style="border:1px solid green">
<hr />
<textarea id="s" rows="10" cols="80" style="width:98%"></textarea>
<input type="button" onclick="MadeSQL()" value="生成SQL语句" style="border:1px solid green" />
<textarea id="d" rows="10" cols="80" style="width:98%"></textarea>
</div>
<pre id="SQLDEMO" style="display:none" intro="通用建表结构">
--通用建表结构
Create Table [dbo].[tablename] (
[ID] int primary key identity(1,1),--ID,主键,自动号
[txtTitle] varchar(255),--标题
[txtContent] text,--内容
[PutTime] datetime Default (getdate()),--提交时间
[ModiTime] datetime Default (getdate()),--修改时间
[Hits] int Default (0),--点击数
[Flags] int Default (0) ,--标识
[OrderID] int Default (0),--排序号
)
</pre>
<pre id="sDemo" style="display:none" intro="初始源测试数据">