- 웹브라우저에 리스트박스를 보여주고 싶다.
HTML Code: <select size="3"> |
- 테이블 줄 합쳐서 보여주기
<tr> <td rowspan=2>학 교</td> <td>행신중 </td> <td>신능중</td> <td>가람중</td> </tr> |
| ||
| <tr> <td colspan=4 align=center>운영체제</td> </tr> |
|
- iBatis 에서 한글이 깨진다면
SQL 이 있는 xml 파일에서 encoding 을 EUC-KR 로 변경한다.
- 래리와 세르게이는 기술을 이용해 큰 문제를 해결하고 싶어서 구글을 창업했다.
- html 에 버튼 삽입하기
Example
A button is marked up as follows:
<button type="button">Click Me!</button>
src | <tr> <td /><td /><td /> <td> <button type="button">Click Me for Insert!</button> </td> <td> <button type="button">Click Me for Delete!</button> </td> </tr> |
|
- html 버튼을 클릭하면?
<INPUT TYPE=BUTTON OnClick="Circle_calc(this.form);" VALUE="calculate">
- jsp Bean 에서 한글 처리
public class JuminNumber {
private String name = null;
private String jumin_no1 = null;
private String jumin_no2 = null;
public void JuminNumber() {}
public void setName(String str) {
try {
name = new String(str.getBytes("8859_1"),"euc-kr");
} catch(java.io.UnsupportedEncodingException uee) {}
}
- iBatis 프로시저 호출
참고 | |
|
- 오라클 ELSE IF 는 없다. ELSIF 가 있을 뿐.
- [JavaScript] select의 선택된 option의 value, text 가져오기
var select = document.getElementById("select_id");
var option_value = select.options[select.selectedIndex].value;
var option_text = select.options[select.selectedIndex].text;
- javascript onload
<script type="text/javascript">
//<![CDATA[
function msg()
{
alert("Message");
}
window.onload=msg
//]]>
</script>
'Blog > 책' 카테고리의 다른 글
[보고서] 보고서 잘쓰는 방법 (1) | 2012.04.03 |
---|---|
[사진] 렌즈에 대해 알아보자. (0) | 2012.04.02 |
[취미] 스킨스쿠버 차이점 (0) | 2012.03.29 |
[사진] 다른 시선으로 이야기 하라. (0) | 2012.03.20 |
크롬플러스에서 크롬으로 (0) | 2012.03.08 |
댓글