%@ page import="java.sql.*" %>
<%@ page contentType="text/html;charset=euc-kr" %>
<%!
public String toParamStr(String oldStr, String newStr) {
try {
if (oldStr == null || oldStr.equals("")) {
return newStr;
} else {
return oldStr.trim();
}
} catch (Exception e) {
return oldStr;
}
}
public String toEucKr(String s) {
try {
return new String(s.getBytes("iso-8859-1"), "EUC-KR");
} catch (Exception e) {
return s;
}
}
%>
<%
String spage = request.getParameter("spage");
String no = request.getParameter("no");
String galtype = request.getParameter("galtype");
String galseason = request.getParameter("galseason");
String menuId = request.getParameter("menuId");
if(menuId == null || menuId.equals("")) menuId = "11";
%>