📄 add_notice.asp
字号:
<%@LANGUAGE="VBSCRIPT" CODEPAGE="936"%>
<!--#include file="../../config.asp"-->
<!--#include file="../checklogin.asp"-->
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=gb2312">
<title>无标题文档</title>
<link href="../img/css1.css" type=text/css rel=stylesheet>
<style type="text/css">
<!--
body {
margin-left: 0px;
margin-top: 0px;
margin-right: 0px;
margin-bottom: 0px;
}
-->
</style>
</head>
<body>
<input type="hidden" name="username" value="所有人">
<table width="99%" border="0" align="center" cellpadding="0" cellspacing="1" bgcolor="#F2F2F2" class="tabel1">
<tr align="right">
<td height="25" colspan="2" bgcolor="#CC0000"><input name="Submit" type="button" class="bon" id="Submit" value="发送短消息" onClick="window.location.href='add_notice.asp'">
<input name="Submit" type="button" class="bon" id="Submit" value="已发短消息" onClick="window.location.href='notice_havesend.asp'">
<input name="Submit" type="button" class="bon" id="Submit" value="已收短消息" onClick="window.location.href='notice_havereceved.asp'"></td>
</tr>
<tr bgcolor="#F9F9F9">
<td height="25" align="center">类 型</td>
<td height="25" align="left"><select name="notice_type" class="tabel1" id="notice_type">
<option value="普通" selected>普通</option>
<option value="重要">重要</option>
</select></td>
</tr>
<tr bgcolor="#F9F9F9">
<td width="13%" height="25" align="center"> 接收人</td>
<td width="87%" height="25" align="left"><input name="sendto" type="text" class="tabel1" id="sendto" size="70">
<select name="uname" id="uname">
<option value="所有人">所有人</option>
<%
sql="select id, truename from oa_Admin where companyid="&session("companyid")
set rs=conn.execute(sql)
do while not rs.eof
%>
<option value="<%=trim(rs("truename"))%>"><%=trim(rs("truename"))%></option>
<%
rs.movenext
loop
rs.close
set rs=nothing
%>
</select>
<input name="button" type="button" class="tabel1" onClick="addsendtouser()" value="增加">
<input name="Submit4" type="button" class="tabel1" onclick="document.form1.sendto.value=''" value="清除"></td>
</tr>
<tr bgcolor="#F9F9F9">
<td height="25" align="center"> 标 题</td>
<td height="25" align="left"><input name="notice_title" type="text" class="tabel1" id="notice_title" size="70"></td>
</tr>
<tr bgcolor="#F9F9F9">
<td height="25" align="center"> 内 容</td>
<td height="25" align="left"><textarea name="notice_content" cols="90" rows="20" class="tabel1" id="notice_content">免费版不支持此功能,请购买正式版。
网址:http://www.hokilly.com
演示:http://www.hokilly.com/demo/hokilly_oa90/
咨询QQ:15916190
电话:13915064582 </textarea></td>
</tr>
<tr bgcolor="#F9F9F9">
<td height="25" colspan="2" align="center"><input name="Submit2" type="submit" class="tabel1" value="提交">
<input name="Submit3" type="reset" class="tabel1" value="重置"></td>
</tr>
</table>
</body>
</html>
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -