📄 install.asp
字号:
<!--#include file="conn.asp" -->
<%
dim rs,sql
set rs=server.createobject("adodb.recordset")
sql="select * from system where id="&"1"&""
rs.Open sql,conn,1,3
%>
<html>
<head>
<title>建立新系统</title>
<meta http-equiv="Content-Type" content="text/html; charset=gb2312">
<style type="text/css">
<!--
body,table {font-size: 9pt; font-family: 宋体}
input { font-size: 9pt; color: #000000; padding-top: 3px}
.c { font-family: 宋体; font-size: 9pt; font-style: normal; line-height: 12pt; font-weight: normal; font-variant: normal; text-decoration: none}
--></style>
</head>
<script Language="JavaScript">
<!--
function Form1_Validator(theForm)
{
if (theForm.system.value == "")
{
alert("必须填写系统名称!");
theForm.mclass_folder.focus();
return (false);
}
if (theForm.weburl.value == "")
{
alert("必须填写系统网址!");
theForm.mclass_folder.focus();
return (false);
}
return (true);
}
//-->
</script>
<body text="#000000" topmargin="0" leftmargin="0">
<br>
<div align="center">
<table border="0" width="514" id="table1" cellspacing="0" cellpadding="0">
<tr>
<td style="font-family: 宋体,'Arial Narrow','Times New Roman'; font-size: 9pt; line-height: 150%"> </td>
</tr>
<tr>
<td style="font-family: 宋体,'Arial Narrow','Times New Roman'; font-size: 9pt; line-height: 150%">
建立新系统</td>
</tr>
</table>
</div>
<form action="installok.asp" method="POST"onsubmit="return Form1_Validator(this)">
<ul>
<div align="center">
<center>
<table border="0" cellspacing="1" cellpadding="0" width="554" height="1" bgcolor="#DADADA">
<tr>
<td height="25" bgcolor="#EBEBEB" colspan="2">
基本资料</td>
</tr>
<tr>
<td width="143" height="25" bgcolor="#EBEBEB">
<p align="right">系统名称 </td>
<td height="25" bgcolor="#FFFFFF">
<input type="text" name="system" size="27" maxlength="27">
<font color="#FF0000">系统的名称,必填</font></td>
</tr>
<tr>
<td width="143" height="25" bgcolor="#EBEBEB">
<p align="right">系统地址 </td>
<td height="25" bgcolor="#FFFFFF">
<input type=hidden name=mclass size=16 maxlength="12" value=<%=request("mclass")%>> <input type="text" name="weburl" size="27" maxlength="255" value="http://">
系统的地址,必填</td>
</tr>
</table>
<br>
<br>
<font size="3" class="c" color="#000000">
<input type="submit" name="Submit" value="下一步">
<input type="RESET" name="Reset" value="还原">
</font>
</center>
</div>
</ul>
<p align="center">
<font size="3" class="c" color="#000000">
<input type="HIDDEN" name="action" value="RegSubmit"> </font>
</form>
<p align="center"> </p>
</body>
</html>
<%rs.close
set rs=nothing
conn.close
set conn=nothing
%>
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -