02_multe.jsp.svn-base
来自「用手机浏览的一个类似于聊天室 博克 homepage 等 对这方面有 兴趣的朋友」· SVN-BASE 代码 · 共 27 行
SVN-BASE
27 行
<%@ page language="java" contentType="text/html; charset=EUC-KR"pageEncoding="EUC-KR"%>
<%
//String mphone = request.getParameter("mphone");
//String gphone = request.getParameter("gphone");
//String isTrue = request.getParameter("isTrue");
String mphone = "13366103"; //test db fang ke
String gphone = "9900100081"; //test db zu ren
String isTrue = "true";
String falseUrl = "08_tarofortuneview.jsp?mphone="+mphone+"&gphone="+gphone;
String trueUrl = "09_tarofortunesee.jsp?mphone="+mphone+"&gphone="+gphone;
System.out.println("mphone=" + mphone);
System.out.println("gphone=" + gphone);
System.out.println("isTrue=" + isTrue);
if(isTrue.equals("true"))
request.getRequestDispatcher(trueUrl).forward(request,response);
else
request.getRequestDispatcher(falseUrl).forward(request,response);
%>
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?