%@ page language="java" contentType="text/html; charset=utf-8" pageEncoding="utf-8"%>
<%@ include file="/field_manager/include/manager_head.jsp"%>
<%
String c_home = r_call(request.getParameter("c_home"));
String c_maker = r_call(request.getParameter("c_maker"));
String c_image = r_call(request.getParameter("c_image"));
if(c_image == null || c_image.equals("")){
%>
<%
}else{
int c_main_type = 0;
String sql_ok2 = "select c_main_type from tbl_field where c_no = " + c_home ;
ResultSet rss = stmt.executeQuery(sql_ok2);
if(rss.next()){
c_main_type= rss.getInt("c_main_type");
}
rss.close();
String imge_size = "";
if(c_main_type == 1){
if(c_image.equals("1")){
imge_size = "1000*200";
}
if(c_image.equals("2")){
imge_size = "6000*300";
}
if(c_image.equals("3")){
imge_size = "1000*100";
}
}
if(c_main_type == 2){
if(c_image.equals("1")){
imge_size = "1000*200";
}
if(c_image.equals("2")){
imge_size = "6000*300";
}
if(c_image.equals("3")){
imge_size = "1000*100";
}
}
%>
Main Images<%=c_image%>. Insert
|
|
|
<%}%>
<%@ include file="/field_manager/include/manager_bottom.jsp"%>