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

📄 addmessage.asp

📁 一套完整的学生课程管理系统
💻 ASP
字号:
<!-- #include file="utility/check.asp" -->
<%
	'****************************************
	'目的:			发送消息用户界面
	'开始时间:		2005-5-30
	'最后修改时间:	2005-5-31
	'编写人:		某某某
	'****************************************
	
	'首先检查是否有权限
	'也就是用户是否通过审核
	CheckFlag(1)
	
	dim msgTo
	msgTo = Request.QueryString("userID")
	
%>
<html>

<head>
<meta http-equiv="Content-Type" content="text/html; charset=gb2312">
<title>发送信息</title>
<link rel="stylesheet" type="text/css" href="images/link.css">
</head>
<table border="0" width="565" id="table2" cellspacing="0" cellpadding="0" height="249">
				<form action="manageMessage.asp?actionType=add" method="post" name="newMessageForm">
				<tr>
					<td height="27" width="104" align="right">主题:</td>
					<td height="27" width="478">
					<input type="text" name="msgTitle" size="20"></td>
				</tr>
				<tr>
					<td height="27" width="104" align="right">收信人:</td>
					<td height="27" width="478">
					<input type="text" name="msgTo" size="20" value="<%=msgTo%>"></td>
				</tr>
				<tr>
					<td width="104" height="160" align="right" valign="middle">
					正文:</td>
					<td width="478" height="160">
					<textarea rows="12" name="msgContent" cols="53" class="inputTextArea"></textarea></td>
				</tr>
				<tr>
					<td width="104" align="right" height="35"> </td>
					<td width="478" height="35">
					<button type=submit class="button" style="width: 60px; height: 20px">提 交</button>&nbsp;&nbsp;&nbsp; &nbsp; 
					<button type=reset class="button" style="width: 60px; height: 20px">重 写</button></td>
				</tr>
				</form>
			</table>
<body>

</body>

</html>

⌨️ 快捷键说明

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