%@ page contentType="text/html;charset=gb2312" %>
<%
String page_code = request.getParameter("page_code");
if (page_code == null) {
page_code = "CBA--000";
}
String page_leftcode = page_code.substring(2,3);
String page_branch = page_code.substring(3,4);
String page_item = page_code.substring(5,8);
%>
碧骨堤
|
|
| |
 |
| |
| 新罗第38代元圣王时,土木技师元德郎被派去修缮碧骨堤.
元德郎和金堤太守商议修缮碧骨堤时, 太守的女儿丹若也帮助父亲而跟他相处的机会多了.
结果对元德郎渐渐产生了感情。 但是大规模的工程一定要给龙王供奉祭品,以平息龙王的愤怒,保证工程的顺利进行。
正在寻找成为祭品的女孩时,原来与元德郎订婚的女孩月乃从家乡来到了工程现场,
正好赶上金堤太守为自己的女儿和元德郎订婚. 金堤太守就打算把月乃作为献给龙的祭品。
丹若知道了这件事, 就为了阻止父亲要杀人的计划, 也为了元德郎可以和月乃结婚,而放弃一切荣华富贵,
把自己当作祭品献给了龙王。 |
<%
int currentInt = Integer.parseInt(page_item,10);
int pageBlock = 5;
int prevInt = currentInt - 1;
int nextInt = currentInt + 1;
int prevjumpInt = (currentInt / pageBlock) * pageBlock - pageBlock + 1;
int nextjumpInt = (currentInt / pageBlock) * pageBlock + pageBlock + 1;
if ((currentInt % pageBlock) == 0) {
prevjumpInt = prevjumpInt - pageBlock;
nextjumpInt = nextjumpInt - pageBlock;
}
%>
| |
|
|
<% if (!page_item.equals("000")) { %>
<% } %>
| |
|
| |
 |
Copyright(c)
GIMJE All rights reserved
[576-120]全罗北道金堤市西菴洞
353
[Tel]82-063-540-3114
webmaster@egimje.net
|
|
| |
<%!
public static String int2string (String moveCode) {
switch (moveCode.length()) {
case 1 :
moveCode = "00" + moveCode;
break;
case 2 :
moveCode = "0" + moveCode;
break;
default :
break;
}
return moveCode;
}
%>
|