jsp页面,谁能给我一张标准的jsp页面图片啊

包括html,指令什么的,比较全面一点的图片说明图片说明图片说明图片说明图片说明图片说明图片说明图片说明

jsp可以完全就是html页面的 。

 <%@ page contentType="text/html;charset=UTF-8" %>
<html>
 <head>
   <title>JSP简单登录实例</title>
 </head>

 <body>
  <h2>请登录</h2>

  <form method="POST" >
   Login Name: <input type="text" name="Name"><br>
   Login Password: <input type="text" name="Password" ><br>
   <input type="submit" value="Send"><br>
  <form>

  <%
      if (request.getParameter("Name") != null 
              && request.getParameter("Password") != null) {  
          String Name = request.getParameter("Name");
          String Password = request.getParameter("Password");
          if (Name.equals("a") && Password.equals("a")) {   
              session.setAttribute("Login", "OK");
              session.setAttribute("myCount", new Integer(1));
              response.sendRedirect("welcome.jsp");
          }
          else {   
              %>
              登录失败:用户名或密码不正确~
              <%  
          } 
      }
%>
 </body>
</html>

这个你找个项目看看就知道了,,