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

📄 xiugai.jsp

📁 jsp写的学生管理系统 可以好好看看 初学者
💻 JSP
字号:
<%@ page contentType="text/html;charset=GB2312" %>
<%@ page import="java.sql.*" %>
<%@ page import="java.util.Date"%>
<html>
<body background="1.jpg">
<table  align="center">
<tr>
<td>

<%!
 public String codeToString(String str)    
 {
   String s=str;
   try
   { 
      byte tempB[]=s.getBytes("ISO-8859-1");
      s=new String(tempB);
      return s;
   }
   catch(Exception e)
   {
     return s;
   }
 }
%>
<% 
    String account="",secret="";
    if(session.isNew())
       {
         response.sendRedirect("main.jsp"); 
       }
    else
       { account=(String)session.getAttribute("account");
         secret=(String)session.getAttribute("secret");
         secret=codeToString(secret); 
         account=codeToString(account);
       }
%>
<p>请输入要修改的学生的学号:
<form action="xiugai2.jsp" method="post">
<input type="text" name="number">
<input type="submit" value="提交">
<input type="reset" value="重新输入">
</form>

<jsp:include page="suoyou.jsp" flush="true" />

</body>
</html>

⌨️ 快捷键说明

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