submit.jsp

来自「oa办公系统」· JSP 代码 · 共 55 行

JSP
55
字号

<%@ page language="java" import="java.util.*" pageEncoding="gbk"%>
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<link rel="stylesheet" type="text/css" href="/theme/2/style.css">


<html>
<style type="text/css">
<!--
.style1 {color: #FFFFFF}
.style2 {
	color: #FF0000;
	font-weight: bold;
}
-->
</style>
<head>
<title>发送短信</title>
<meta http-equiv="Content-Type" content="text/html; charset=gb2312">
</head>
<script type="text/javascript">
function conSend(toId){
	document.f1.toId.value=toId;
	document.f1.submit();
}
</script>
<body class="bodycolor">
<br>
<br>
<form name="f1" action="presendmsg" method="post">
	<input type="hidden" name="toId"/>
</form>
<div align="center">&nbsp;&nbsp;
  <table width="296" border="1" cellpadding="0" cellspacing="0">
    <tr>
      <th width="292" height="20" bgcolor="#2690CE" scope="col"><span class="style1">提示</span></th>
    </tr>
    <tr>
      <td height="74"><p align="center" class="style2">信息发送成功!!</p>      </td>
    </tr>
    <tr>
      <td height="23" bgcolor="#2690CE">
      	<div align="center">
      		<a href="javascript:conSend('${param.toId}');"><strong>继续发消息</strong></a> &nbsp;
      		<strong>&nbsp;<a href="../body.html">返回主页面 </a></strong> 
      	</div>
      </td>
    </tr>
  </table>
</div>

</body>
</html>

⌨️ 快捷键说明

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