전체 글159 마우스 제어 스크립트 function click() { if (event.button==1) { //마우스 버튼 번호 1은 왼쪽 2는 오른쪽 if(confirm("창을 닫습니다.")){ window.close(); } } } 2009. 10. 12. [Oracle] Startup ShutDown oracle@oracle $ ./svrmgrl SVRMGRL> connect internal SVRMGRL> startup SVRMGRL> exit oracle@oracle $ lsnrctl start --종료 oracle@oracle $ lsnrctl stop oracle@oracle $ svrmgrl SVRMGRL> connect internal SVRMGRL> shutdown normal 2009. 10. 12. 다중업데이트 update ABC85 A set A.job_dt =( select to_char(B.crea_dt,'yyyymmdd') from ABC85 B WHERE A.CREA_DT = B.CREA_DT ) 2009. 10. 12. 특수문자처리 특수문자 처리 추가 var re = / |`|~|#|\$|%|\^|&|\(|\)|_|\+|\||\-|\+|=|\\|\[|\]|\;|'|:|"|\.|\/|\?/g; document.myform.chgname.value = document.myform.chgname.value.replace(re, ''); 2009. 10. 12. 이전 1 ··· 30 31 32 33 34 35 36 ··· 40 다음