java web 网上零食商城前端代码
Posted panxubin1011703
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了java web 网上零食商城前端代码相关的知识,希望对你有一定的参考价值。
(1)、index.jsp
<%@ taglib prefix="fn" uri="http://java.sun.com/jsp/jstl/functions" %>
<%@ page language="java" contentType="text/html; charset=utf-8" pageEncoding="utf-8" %>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<%@ include file="/common/pre/header.jsp" %>
<%
Object obj=request.getAttribute("productCategoryVoList");
if(obj==null)
response.sendRedirect(request.getContextPath()+"/Home?action=index");
%>
<%@ include file="/common/pre/searchBar.jsp" %>
$status.index+1F
$temp.productCategory.name
<%@ include file="/common/pre/footer.jsp" %>
2.login.jsp
<%@ page language="java" contentType="text/html; charset=utf-8" pageEncoding="utf-8" %>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<%
if(request.getSession().getAttribute("loginUser")!=null)
response.sendRedirect(request.getContextPath()+"/Home?action=index");
%>
<%@ include file="/common/pre/header.jsp" %>
备案/许可证编号:蜀ICP备12009302号-1-www.dingguagua.com Copyright ? 2015-2018 尤洪商城网 All Rights Reserved. 复制必究 , Technical Support: Dgg Group
\3.register.jsp
<%@ page language="java" contentType="text/html; charset=utf-8" pageEncoding="utf-8" %>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<%@ include file="/common/pre/header.jsp" %>