« Previous : 1 : ... 72 : 73 : 74 : 75 : 76 : 77 : 78 : 79 : 80 : ... 101 : Next »

이미지 퍼가기 금지.

그림에 마우스를 내면 인쇄/복사/편지/내그림
도구 안보이게~

< META HTTP-EQUIV=\"imagetoolbar\" CONTENT=\"no\">


마우스 오른쪽버튼,드래그금지

< body oncontextmenu=\"return false\" onselectstart=\"return false\" ondragstart=\"return false\">
크리에이티브 커먼즈 라이센스
Creative Commons License
이올린에 북마크하기

Posted by 홍반장

2005/02/04 16:25 2005/02/04 16:25
Response
No Trackback , No Comment
RSS :
http://tcbs17.cafe24.com/tc/rss/response/63




크리에이티브 커먼즈 라이센스
Creative Commons License
이올린에 북마크하기

Posted by 홍반장

2005/01/27 18:01 2005/01/27 18:01
Response
No Trackback , No Comment
RSS :
http://tcbs17.cafe24.com/tc/rss/response/62

윈도우에서 창을 닫을 때
보통 window.close();를 사용해서 닫는데
이럴 경우에는 \"창을 닫으시겠습니까? 예 아니오\"라는 확인창이 나오게 됩니다.

이런 확인창 없이 윈도우를 닫고자 할때는
self.opener = self;
window.close();
이런 식으로 해주면 됩니다.
크리에이티브 커먼즈 라이센스
Creative Commons License
이올린에 북마크하기

Posted by 홍반장

2005/01/10 15:47 2005/01/10 15:47
Response
No Trackback , No Comment
RSS :
http://tcbs17.cafe24.com/tc/rss/response/318

일정 시간 경과후 창 닫기




.
크리에이티브 커먼즈 라이센스
Creative Commons License
이올린에 북마크하기

Posted by 홍반장

2005/01/10 15:46 2005/01/10 15:46
Response
No Trackback , No Comment
RSS :
http://tcbs17.cafe24.com/tc/rss/response/317

telnet 포트를 막고 서비스를 사용하지 않는다



/etc/services 에서 관련부분을 주석처리한다



또는



/etc/xinetd.d/telnet 을 열어보면 disable = yes 로 설정한다

그리고

/etc/rc.d/init.d/xinetd restart 하여 데몬을 재시작한다





참고) 기본

ftp 포트 21

telnet 포트 23

ssh 포트 22

http 포트 80

pop 포트 110

smtp 포트 25

등등



1024 밑으론 허접한 서비스들이 많다
크리에이티브 커먼즈 라이센스
Creative Commons License
이올린에 북마크하기

Posted by 홍반장

2004/12/28 11:10 2004/12/28 11:10
Response
No Trackback , No Comment
RSS :
http://tcbs17.cafe24.com/tc/rss/response/226

이미지
크리에이티브 커먼즈 라이센스
Creative Commons License
이올린에 북마크하기

Posted by 홍반장

2004/12/16 16:34 2004/12/16 16:34
Response
No Trackback , No Comment
RSS :
http://tcbs17.cafe24.com/tc/rss/response/316

지정된 갯수의 이미지가 순서를 바꾸면서 페이딩되며 나타납니다




J@sko Sample Script
























크리에이티브 커먼즈 라이센스
Creative Commons License
이올린에 북마크하기

Posted by 홍반장

2004/12/16 16:32 2004/12/16 16:32
Response
No Trackback , No Comment
RSS :
http://tcbs17.cafe24.com/tc/rss/response/315

이미지
크리에이티브 커먼즈 라이센스
Creative Commons License
이올린에 북마크하기

Posted by 홍반장

2004/12/16 13:27 2004/12/16 13:27
Response
No Trackback , No Comment
RSS :
http://tcbs17.cafe24.com/tc/rss/response/314

여러장의 이미지를 책장을 넘기듯이 보여주는 이미지 슬라이드 스크립트 입니다.
각 이미지별로 링크를 걸 수도 있는 스크립트 입니다






















크리에이티브 커먼즈 라이센스
Creative Commons License
이올린에 북마크하기

Posted by 홍반장

2004/12/16 11:49 2004/12/16 11:49
Response
No Trackback , No Comment
RSS :
http://tcbs17.cafe24.com/tc/rss/response/313

사업자 등록번호 체크

function reg_no_check()
{
var chkRule = "137137135";
var ThisVal1=document.form1.social_no1.value;
var ThisVal2=document.form1.social_no2.value;
var ThisVal3=document.form1.social_no3.value;

var strCorpNum = ThisVal1 + ThisVal2 + ThisVal3; // 사업자번호 10자리
var step1, step2, step3, step4, step5, step6, step7;

step1 = 0; // 초기화

for (i=0; i<7; i++)
{
step1 = step1 + (strCorpNum.substring(i, i+1) *chkRule.substring(i, i+1));
}

step2 = step1 % 10;
step3 = (strCorpNum.substring(7, 8) * chkRule.substring(7, 8))% 10;
step4 = strCorpNum.substring(8, 9) * chkRule.substring(8, 9);
step5 = Math.round(step4 / 10 - 0.5);
step6 = step4 - (step5 * 10);
step7 = (10 - ((step2 + step3 + step5 + step6) % 10)) % 10;

if (strCorpNum.substring(9, 10) != step7) // 결과 비교 판단
{
alert("사업자 등록 번호에 이상이 있습니다.

확인하시고 다시 입력해
주세요. ")
document.form1.social_no1.value = "";
document.form1.social_no2.value = "";
document.form1.social_no3.value = "";
document.form1.social_no1.focus();
return false;
}
return true;
}
크리에이티브 커먼즈 라이센스
Creative Commons License
이올린에 북마크하기

Posted by 홍반장

2004/12/14 13:45 2004/12/14 13:45
Response
No Trackback , No Comment
RSS :
http://tcbs17.cafe24.com/tc/rss/response/61

« Previous : 1 : ... 72 : 73 : 74 : 75 : 76 : 77 : 78 : 79 : 80 : ... 101 : Next »

블로그 이미지

- 홍반장

Archives

Recent Trackbacks

Calendar

«   2024/11   »
          1 2
3 4 5 6 7 8 9
10 11 12 13 14 15 16
17 18 19 20 21 22 23
24 25 26 27 28 29 30
Statistics Graph

Site Stats

Total hits:
241043
Today:
839
Yesterday:
856