roomdown.asp

来自「功能非常强大的一款办公自动化软件原代码,其中的文档签收功能特别实用.不相信下下来」· ASP 代码 · 共 52 行

ASP
52
字号
<html>
<head>
<title>Untitled Document</title>
<meta http-equiv="Content-Type" content="text/html; charset=gb2312">
<style>
INPUT {
	BACKGROUND: url(images/);BORDER-BOTTOM: #333333 1px solid; BORDER-LEFT: #333333 1px solid; BORDER-RIGHT: #333333 1px solid; BORDER-TOP: #333333 1px solid; COLOR: #000000; FONT-SIZE: 13px
}
</style>
</head>

<body bgcolor="#FFFFFF" text="#000000" leftmargin="0" topmargin="0" marginwidth="0" marginheight="0">
<script language=javascript>
function onchoose() {
if (document.form.roomid.value=="")
{
alert("你还没有会议室!")
return false;
}
parent.opener.document.form.roomname.value=document.form.roomchoose.value;
parent.opener.document.form.roomid.value=document.form.roomid.value;
parent.close();
}
function oncancel() {
parent.close()
}
</script>
<table width="100%" height="100%" border="1" cellspacing="0" cellpadding="1" bordercolordark=white bordercolorlight=black >
  <tr>
    <td valign="top" > 
      <form name="form" method="post" action="">
        <table cellspacing="0" cellpadding="2" width="100%" border="0" align="center" height="100%">
          <tr bgcolor="#deefff"> 
            <td > 
              <textarea name="roomchoose" style="width:100%;height:100%;" readonly></textarea>
            </td>
          </tr>
          <tr bgcolor="#deefff"> 
            <td style="BACKGROUND-COLOR: #deefff" class=dotted-table  align=center height="20"> 
              <input type="hidden" name="roomid">
              <input onClick="return onchoose();" type="button" value="确定" name="button1">
              <input onClick="oncancel();" type="button" value="取消" name="button2">
            </td>
          </tr>
        </table>
      </form>
    </td>
  </tr>
</table>
</body>
</html>

⌨️ 快捷键说明

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