编程基础首页投稿(暂停使用,暂停投稿)

顾客管理系统java+servlet

2016-06-29  本文已影响70人  huhu502

首先我先搭好网页的框架

Paste_Image.png

2)在login.html中写两个按钮,用来跳转页面
<tfoot>
<tr><td><input type="button" value="提交" onclick="mylogin()" ></td>
<td><input type="button" value="注册" onclick="myregister()"></td></tr>
</tfoot>

在dopost中写如下代码
request.setCharacterEncoding("GBK"); //设置编码格式
response.setCharacterEncoding("GBK");
PrintWriter printWriter=response.getWriter();
//获取login.html中传递过来的数据--name
String name=request.getParameter("name");
ICustomerService customerService=new CustomerServiceImp();
//这里是我封装的类,可以获取数据库的数据,这里的内容我会在下一节讲解
Customer cust= customerService.login(name, null);
printWriter.println("姓名:"+cust.getName());//这里的数据会显示在浏览器上
printWriter.println("性别:"+cust.getGender());
printWriter.println("电话:"+cust.getTelephone());
printWriter.println("地址:"+cust.getAddress());
printWriter.flush();
printWriter.close();

Paste_Image.png

1)这里跳转的是名字叫Register的servlet
<form action="http://localhost:8888/cms/Register" method="post">

2)用submit来提交表单,这里不同于上面的用js的方式来跳转页面,这是第二种跳转页面的方法
<td><input type="submit" value="提交" ></td>
<td><input type="reset" value="重置" ></td>

Paste_Image.png
上一篇下一篇

猜你喜欢

热点阅读