80 lines
2.6 KiB
Plaintext
80 lines
2.6 KiB
Plaintext
<%@ 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"));
|
|
|
|
if(c_home.equals("") || c_maker.equals("")){
|
|
%>
|
|
<script>
|
|
alert("Wrong Connection.")
|
|
location.href="/"
|
|
</script>
|
|
<%
|
|
}else{
|
|
|
|
Statement stmt3=conn.createStatement();
|
|
int old_order2 = 0;
|
|
int old_order3 = 0;
|
|
int order2 = 0;
|
|
int order3 = 0;
|
|
%>
|
|
<center>
|
|
<table width="1024" cellSpacing="0" cellPadding="0" border="0" bgcolor=ffffff>
|
|
<tr style="font-size:14px;">
|
|
<td height="60">
|
|
<%
|
|
int c_main_type = 0;
|
|
String sql_ok2 = "select c_name, c_eng_name, 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");
|
|
%>
|
|
<b><%=rss.getString("c_name")%> / <%=rss.getString("c_eng_name")%> Main management</b>
|
|
<%
|
|
}
|
|
rss.close();
|
|
%>
|
|
</td>
|
|
</tr>
|
|
</table>
|
|
<table width="1024" cellSpacing="0" cellPadding="0" border="0" bgcolor=ffffff>
|
|
|
|
<tr style="font-size:14px;">
|
|
<td height="40" colspan=2>
|
|
Type <%=c_main_type%>.
|
|
</td>
|
|
</tr>
|
|
<tr style="font-size:14px;">
|
|
<td height="40" width=240 rowspan=4 valign=top>
|
|
<img src="/images/type<%=c_main_type%>.gif">
|
|
</td>
|
|
<td height="40">
|
|
<a href="image/list.jsp?c_image=1&c_home=<%=c_home%>&c_maker=<%=c_maker%>"><img src="/images/type<%=c_main_type%>_1.gif" width=80> [ Image1 management ]</a>
|
|
</td>
|
|
</tr>
|
|
<tr style="font-size:14px;">
|
|
<td height="40" style="padding-top:20px">
|
|
<a href="text/list.jsp?c_home=<%=c_home%>&c_maker=<%=c_maker%>"><img src="/images/type<%=c_main_type%>_t.gif" width=80> [ Text management ]</a>
|
|
</td>
|
|
</tr>
|
|
<tr style="font-size:14px;">
|
|
<td height="40" style="padding-top:20px">
|
|
<a href="image/list.jsp?c_image=2&c_home=<%=c_home%>&c_maker=<%=c_maker%>"><img src="/images/type<%=c_main_type%>_2.gif" width=80> [ Image2 management ]</a>
|
|
</td>
|
|
</tr>
|
|
<tr style="font-size:14px;">
|
|
<td height="40" style="padding-top:20px">
|
|
<a href="image/list.jsp?c_image=3&c_home=<%=c_home%>&c_maker=<%=c_maker%>"><img src="/images/type<%=c_main_type%>_3.gif" width=80> [ Image3 management ]</a>
|
|
</td>
|
|
</tr>
|
|
</table>
|
|
|
|
<%
|
|
stmt3.close();
|
|
%>
|
|
|
|
<% }%>
|
|
<%@ include file="/field_manager/include/manager_bottom.jsp"%>
|