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

📄

📁 能够实现宾馆管理的基本功能。 例如删除
💻
📖 第 1 页 / 共 3 页
字号:
<html><head>




<meta http-equiv="Content-Type" content="text/html; charset=GB2312">
<link rel="stylesheet" type="text/css" href="%E5%8C%97%E4%BA%AC%E5%8F%8C%E9%98%B3%E5%AE%BE%E9%A6%86_files/style.css">
<title>北京双阳宾馆</title>
<script language="javascript" src="%E5%8C%97%E4%BA%AC%E5%8F%8C%E9%98%B3%E5%AE%BE%E9%A6%86_files/area.js"></script>
<script language="javascript">
function check(theform)
{
if (theform.username.value=="")
{
alert("用户姓名不能空");
theform.username.focus();
return false;
}

if (theform.mphone.value=="")
{
alert("用户手机不能空");
theform.mphone.focus();
return false;
}
if (theform.usermail.value=="")
{
alert("用户邮箱不能空");
theform.usermail.focus();
return false;
}
if (theform.userprovince.value=="")
{
alert("所在省份没有选");
theform.userprovince.focus();
return false;
}
if (theform.address.value=="")
{
alert("用户地址不能空");
theform.address.focus();
return false;
}

if (theform.usern.value=="")
{
alert("用户帐号不能空");
theform.usern.focus();
return false;
}

if (theform.userpwd.value=="")
{
alert("用户密码不能空");
theform.userpwd.focus();
return false;
}
if (theform.userpwd.value!=theform.userpwd2.value)
{
alert("两次输入密码不符");
theform.userpwd.focus();
return false;
}
return true;
}
</script>
<style type="text/css">
<!--
.style10 {color: #0000FF}
.STYLE11 {color: #009900}
-->
</style>
</head><body>
<script language="javascript" src="%E5%8C%97%E4%BA%AC%E5%8F%8C%E9%98%B3%E5%AE%BE%E9%A6%86_files/date.js"></script><style>#Calendar_ {background-color:#ffcc66;width:157 !important;width:154px;position:absolute;display:none}#Calendar_ ul{list-style-type:none;margin-left:-38px !important;margin:0 0 0 -30px;}#Calendar_ ul li{display:block;width:20px;margin:1px;background-color:#fff;text-align:center;float:left;font:11px Tahoma}#Calendar_ ul li a{height:18px;display:block;background-color:#fff;line-height:18px;text-decoration:none;color:#333}#Calendar_ ul li a:hover{background:#336699;color:#FFF}#Calendar_ #dateText_{font:12px Tahoma;text-align:center}#Calendar_ #dateText_ a{font:10px Tahoma;text-decoration:none}#Calendar_ #head__ li a{font:bold 12px Tahoma}#Calendar_ #dataGrid_{}#Calendar_ #dataGrid_ li a:hover{background:#dedede url(/plus/calendar/check.gif) right bottom no-repeat;color:red}#Calendar_ #dataGrid_ .today{background:url(/plus/calendar/today.gif) center no-repeat;color:blue;}#Calendar_ #dataGrid_ .curDay{background:#dedede url(/plus/calendar/check.gif) right bottom no-repeat;color:blue;}</style><div id="Calendar_"><div id="dateText_"></div><ul id="head__" onclick="return false"><li><a href="#">日</a></li><li><a href="#">一</a></li><li><a href="#">二</a></li><li><a href="#">三</a></li><li><a href="#">四</a></li><li><a href="#">五</a></li><li><a href="#">六</a></li></ul><ul id="dataGrid_"></ul></div>
<script language="javascript">

function  DateAdd(strInterval,  NumDay,  dtDate)  {  
           var  dtTmp  =  new  Date(dtDate);  
           if  (isNaN(dtTmp))  dtTmp  =  new  Date();  
           switch  (strInterval)  {  
                       case  "s":return  new  Date(Date.parse(dtTmp)  +  (1000  *  NumDay));  
                       case  "n":return  new  Date(Date.parse(dtTmp)  +  (60000  *  NumDay));  
                       case  "h":return  new  Date(Date.parse(dtTmp)  +  (3600000  *  NumDay));  
                       case  "d":return  new  Date(Date.parse(dtTmp)  +  (86400000  *  NumDay));  
                       case  "w":return  new  Date(Date.parse(dtTmp)  +  ((86400000  *  7)  *  NumDay));  
                       case  "m":return  new  Date(dtTmp.getFullYear(),  (dtTmp.getMonth())  +  NumDay,  dtTmp.getDate(),  dtTmp.getHours(),  dtTmp.getMinutes(),  dtTmp.getSeconds());  
                       case  "y":return  new  Date((dtTmp.getFullYear()  +  NumDay),  dtTmp.getMonth(),  dtTmp.getDate(),  dtTmp.getHours(),  dtTmp.getMinutes(),  dtTmp.getSeconds());  
           }  
}  

function timefromchange()
{
   
	document.con.timeto.value=DateAdd("d",1,CDate(document.con.timefrom.value).toLocaleString);
	
    return true;

}

function checkform(theform)
{
  if (theform.messageuser.value == "")
  {
    alert("请输入您的姓名");
    theform.messageuser.focus();
    return false;
  }
  if (theform.messagesex[0].checked==false&&theform.messagesex[1].checked==false)
  {
    alert("性别没有选择");
    theform.messagesex[0].focus();
    return false;
  }
  if (theform.mphone.value=="")
  {
    alert("请输入您的手机");
    theform.mphone.focus();
    return false;
  }
  if (theform.timefrom.value=="")
  {
    alert("起始时间不能空");
    theform.timefrom.focus();
    return false;
  }
  if (theform.timeto.value=="")
  {
    alert("终止时间不能空");
	theform.timeto.focus();
	return false;
  }
  if (theform.messagewhat.value=="")
  {
    alert("请填写您预定的内容");
	theform.messagewhat.focus();
	return false;
  }
  return true;
}
</script>
<table width="904" align="center" border="0" cellpadding="0" cellspacing="0">
  <tbody><tr>
    <td width="56"></td>
    <td rowspan="6" width="206"><img src="%E5%8C%97%E4%BA%AC%E5%8F%8C%E9%98%B3%E5%AE%BE%E9%A6%86_files/logo_head.gif" width="206" height="108"></td>
    <td width="37"></td>
    <td width="605"><table width="605" border="0" cellpadding="0" cellspacing="0">
      <tbody><tr>
        <td><table align="center" cellpadding="0" cellspacing="0">
<form method="post" action="user_login.asp?action=logincheck"></form>
  <tbody><tr>
   <td width="78">用户名</td>
   <td width="90"><input name="usern" style="border: 1px solid rgb(192, 192, 192); height: 20px; width: 83px; font-size: 9pt; font-family: Verdana;" type="text"></td>
   <td width="30">密码</td>
   <td width="89"><input name="userpwd" style="border: 1px solid rgb(192, 192, 192); height: 20px; width: 83px; font-size: 9pt; font-family: Verdana;" type="password"></td>
   <td width="66"><input name="submit" style="border-style: solid; border-width: 0pt; height: 22px; width: 66px; background-image: url(images/head_dl_dl.gif);" value="" type="submit"></td>
   <td width="15"><input name="button" style="border-style: solid; border-width: 0pt; height: 22px; width: 15px; background-image: url(images/head_dl_zc.gif);" value="" onclick="location.href='show.asp?action=reg'" type="button"></td>
   <td width="40"></td>
   <td width="40"><a href="http://www.shuangyanghotel.com/en/index.asp"><img src="%E5%8C%97%E4%BA%AC%E5%8F%8C%E9%98%B3%E5%AE%BE%E9%A6%86_files/english.jpg" width="80" border="0" height="21"></a></td>
  </tr>

<tr>
<td colspan="4" align="right" height="11"><img src="%E5%8C%97%E4%BA%AC%E5%8F%8C%E9%98%B3%E5%AE%BE%E9%A6%86_files/head_dl_hyd.gif" width="247" border="0" height="11"></td>
<td><img src="%E5%8C%97%E4%BA%AC%E5%8F%8C%E9%98%B3%E5%AE%BE%E9%A6%86_files/head_dl_dld.gif" width="66" border="0" height="11"></td>
<td><img src="%E5%8C%97%E4%BA%AC%E5%8F%8C%E9%98%B3%E5%AE%BE%E9%A6%86_files/head_dl_zcd.gif" width="15" border="0" height="11"></td>
<td></td>
<td></td>
</tr>

⌨️ 快捷键说明

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