Created
June 7, 2017 11:49
-
-
Save thomasJang/d2920489844f9408c4e153b62cc272be to your computer and use it in GitHub Desktop.
RequestUtils.jsp
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<%@ page language="java" contentType="text/html; charset=utf-8" pageEncoding="utf-8" %> | |
<%@ page import="com.chequer.sqlgate.pms.core.utils.*" %> | |
<%@ taglib prefix="c" uri="http://java.sun.com/jsp/jstl/core" %> | |
<%@ taglib prefix="ax" tagdir="/WEB-INF/tags" %> | |
<% | |
String licenseType = RequestUtils.of(request).getString("licenseType", "business"); | |
String buyType = RequestUtils.of(request).getString("buyType", "new"); | |
request.setAttribute("licenseType", licenseType); | |
request.setAttribute("buyType", buyType); | |
%> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment