内容发布更新时间 : 2025/1/11 18:28:29星期一 下面是文章的全部内容请认真阅读。
aaa bbb ccc
02、提交表单前验证表单输入是否为空(JavaScript)
密码:
03、编写一个简单的登录程序,要求登录页面index.jsp中输入用户名(username)、密码(password),用户点击提交后,验证用户是否输入了用户名、密码。如果用户名为aaa,密码为aaa,则转到登录成功页面,否则显示index.jsp页面。
用户名:
<% String name=request.getParameter(\ if(name==null) name=\
String password=request.getParameter(\ if(password==null) password=\ if(name=aaa&&password==aaa) %>
04、用Application对象实现一个简单的网页计数器 <%@page contentType=\
<% Integer number=(Integer)application.getAttribute(\ if (number==null)
{ number=new Integer(1);
application.setAttribute(\ else
{ number=new Integer(number.intValue()+1); application.setAttribute(\%>
您是第<%=(Integer)application.getAttribute(\个访问本站的客户。
21
05、编写一个输出\程序。 import java.io.*;
import javax.servlet.*;
import javax.servlet.http.*;
//创建一个Servlet类,继承HttpServlet public class Hello extends HttpServlet { // 重写doGet()
public void doGet(HttpServletRequest request, HttpServletRe