📄 finput.jsp
字号:
<%@ page language="java" import="java.util.*" pageEncoding="gb2312"%>
<%
String path = request.getContextPath();
String basePath = request.getScheme()+"://"+request.getServerName()+":"+request.getServerPort()+path+"/";
%>
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<html>
<head>
<meta http-equiv="Content-Language" content="zh-cn">
<base href="<%=basePath%>">
<title>辅导员输入信息</title>
<meta http-equiv="pragma" content="no-cache">
<meta http-equiv="cache-control" content="no-cache">
<meta http-equiv="expires" content="0">
<meta http-equiv="keywords" content="keyword1,keyword2,keyword3">
<meta http-equiv="description" content="This is my page">
<!--
<link rel="stylesheet" type="text/css" href="styles.css">
-->
<link rel="stylesheet" type="text/css" href="styles.css">
</head>
<jsp:include page="inc/head.html"/>
<body>
<%
try
{
String type1=(String)session.getValue("type");
int t=Integer.parseInt(type1);
int test;
test=((t/4)%2);
if (test!=1) out.print("<script language='javascript'>alert('你没有这个权限!');location.href='main.jsp'</script>");
}
catch(Exception e)
{
response.sendRedirect("Login.jsp");
}
%>
<form method="POST" action="upFinput.jsp">
<table width="100%" height="100%">
<tr>
<td width="25%">学生号码
<!--webbot bot="SaveResults" U-File="fpweb:///_private/form_results.csv" S-Format="TEXT/CSV" S-Label-Fields="TRUE" -->
<input type="text" name="id" size="20"></td>
<td width="75%" rowspan="2">
毕业去向
<p><textarea rows="9" name="go" cols="102"></textarea></p>
<p> </td>
</tr>
<tr>
<td width="25%">
<p><textarea rows="15" name="ap" cols="34"></textarea></p>
<p>奖励<input type="radio" value="1" checked name="rp">惩罚<input type="radio" value="0" checked name="rp"></p>
<p>
<input type="submit" value="提交" name="B1" style="float: right"></p>
</td>
</tr>
</table></form>
<br>
</body>
</html>
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -