게시판을 이용해 주셔서 감사합니다.
다음양식에 맞게 입력해주세요.
* 고객시스템명 : sdi
* GAUCE 버전 : 3.5
* WAS 종류(WebLogic 등등) : weblogic
* DB 종류 : oracle
* 문의 유형(질문/요청/참조) :
* 내용 :
조회 때마다 타이틀이 변경됩니다.
+--------------+ +--------------+
| A | B | -->> | C | D |
+--------------+ +--------------+
물론 C, D는 DB테이블에서 가져와야 합니다.
그래서 서블릿 단에서
StringBuffer html = new StringBuffer();
html.append("<html><script>n");
html.append("grd.ColumnProp('A','Name')='C';n");
html.append("grd.ColumnProp('B','Name')='D';n");
html.append("</script></html>n");
PrintWriter out = new PrintWriter(new OutputStreamWriter(response.getOutputStream()));
out.write(html.toString());
out.flush();
dataset.flush();
위와 같이 적어 적용해 봤는데 맘만큼 되지 않는 군요.
타이틀 동적으로 만드는 방법을 알려주세요.