⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 title.asp

📁 漂亮的企业网站管理系统 v2.6 修正了联系我们不能显示
💻 ASP
字号:
<%@LANGUAGE="VBSCRIPT" CODEPAGE="936"%>
<!--#include file="checkadmin.asp" -->
<!--#include file="open.asp" -->
<!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" />
<title>无标题文档</title>
<style type="text/css">
<!--
.text {	font-size: 12px;
	line-height: 22px;
	color: #333333;
	text-decoration: none;
	cursor: help;
}
body {
	background-color: #F7F7F7;
}
body,td,th {
	font-size: 12px;
}
-->
</style>
</head>

<body>
<div align="center"><br />
  <br />
  <br />
    <span class="header">系统基本设置(请勿用Html语法)</span><br />
</div>
<form id="form1" name="form1" method="post" action="titles.asp">
  <table width="100%" border="0" align="center" cellpadding="1" cellspacing="1" bgcolor="ececec" class="text">
    <tr bgcolor="f7f7f7">
      <%
SQL="Select * from title"
Set rs=Server.CreateObject("ADODB.RecordSet")
rs.Open SQL,con,1,1
if rs.Eof then
	Response.End
end if
%>
      <td width="36%" height="24" align="right">网站标题:</td>
      <td width="64%" height="24">  
      <input name="title" type="text" id="title" value="<%=rs("title")%>" /></td>
  
    </tr>
    <tr bgcolor="f7f7f7">
      <td height="24" align="right"><span class="altbg1">关 键 字:</span></td>
      <td height="24">&nbsp;&nbsp;
      <textarea name="keywords" cols="30" rows="8" id="keywords"><%=rs("keywords")%></textarea></td>
    </tr>
    <tr bgcolor="f7f7f7">
      <td height="24" align="right"><span class="altbg1">网站描述:</span></td>
      <td height="24">&nbsp;&nbsp;
      <textarea name="scription" cols="30" rows="8" id="scription"><%=rs("description")%></textarea></td>
    </tr>
    <tr bgcolor="f7f7f7">
      <td height="24" align="right">&nbsp;</td>
      <td height="24"> 
       <%
rs.close
Set rs=nothing
%>
   
  
        <input name="Submit" type="submit" value="提交" />
        &nbsp;
      <input name="Submit2" type="reset" value="重置" /></td></tr>
  </table>
</form>
</body>
</html>

⌨️ 快捷键说明

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