p1.jsp

来自「郭克华j2ee高级框架实战教学视频源代码 这个是比较值得一看的 由郭克华博士」· JSP 代码 · 共 21 行

JSP
21
字号
<%@ page language="java" pageEncoding="GB18030"%>
<%@ taglib uri="http://struts.apache.org/tags-bean" prefix="bean" %>
<%@ taglib uri="http://struts.apache.org/tags-html" prefix="html" %>
<%@ taglib uri="http://struts.apache.org/tags-logic" prefix="logic" %>
<%@ taglib uri="http://struts.apache.org/tags-tiles" prefix="tiles" %>
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<html:html lang="true">
  <head>
    
    <title>p1.jsp</title>
  </head>
  <body>
    <html:link action="/query.do">默认模块</html:link><BR>    
    <html:link action="/query.do"  module="/">默认模块</html:link><BR>
    <html:link action="/sale/query.do">销售模块</html:link><BR>
    <html:link action="/query.do" module="/sale">销售模块</html:link><BR>
    <!-- 切换方法2 -->
    <html:link action="/switch.do?prefix=/sale&page=/query.do">销售模块</html:link><BR>
     <html:link action="/switch.do?prefix=&page=/query.do">默认模块</html:link><BR>
  </body>
</html:html>

⌨️ 快捷键说明

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