아래의 구문을 페이지 제일 하단에 삽입하면,
엔터키 입력시 준비된 이벤트 외에는 작동하지 않음.

document.onkeypress = function() { if (event.keyCode == '13') { return false; } };
크리에이티브 커먼즈 라이센스
Creative Commons License
이올린에 북마크하기

Posted by 홍반장

2008/02/26 17:18 2008/02/26 17:18
Response
No Trackback , No Comment
RSS :
http://tcbs17.cafe24.com/tc/rss/response/3022

윈도우용 간단한 소스 편집기 notepad++



http://sourceforge.net/projects/notepad-plus


공식 사이트 - http://notepad-plus.sourceforge.net/uk/about.php
크리에이티브 커먼즈 라이센스
Creative Commons License
이올린에 북마크하기

Posted by 홍반장

2008/02/11 13:24 2008/02/11 13:24
Response
No Trackback , No Comment
RSS :
http://tcbs17.cafe24.com/tc/rss/response/2986

자바 FX 스크립 시작

Robert Eckstein 및 JavaFX Programming Language Reference 필진 작성, 2007년 7월

JavaFX Script 프로그래밍 언어(JavaFX)는 Sun Microsystems, Inc.에서 제공하는 선언적, 정적 형식의 스크립팅 언어이다. Open JavaFX (OpenJFX) 웹 사이트에서 언급한 대로, JavaFX 기술은 Java 기술 API에 직접 호출하는 것을 비롯한 다양한 기능으로 구성되어 있다. JavaFX 스크립트는 정적 형식인 만큼 동일한 코드 구조, 재사용 및 캡슐화 기능을 갖추고 있어(예: 패키지, 클래스, 상속, 별도의 컴파일 및 배포 단위) Java 기술을 사용해 매우 큰 규모의 프로그램을 만들고 유지 관리할 수 있다.



JavaFX 스크립트 학습, 1부: Java 프로그래머를 위한 JavaFX 스트립트 소개

http://www.sdnkorea.com/blog/422


https://openjfx.dev.java.net/
크리에이티브 커먼즈 라이센스
Creative Commons License
이올린에 북마크하기

Posted by 홍반장

2008/02/11 13:20 2008/02/11 13:20
Response
No Trackback , No Comment
RSS :
http://tcbs17.cafe24.com/tc/rss/response/2985

awstats - For Window(IIS) 설치하기(weblog)

링트 1 : http://www.1000dedi.net/docs/renew/smile_board/bbs/tb.php/serverLecture/237

링트 2 : http://awstats.sourceforge.net/docs/awstats_setup.html

링트 3 : http://blog.naver.com/icanfind?Redirect=Log&logNo=110004604144



윈도우 iis 웹서버에서 awstats 설치하기

1. http://awstats.sourceforge.net에서 윈도우용 awstats를 다운을 받는다


2. http://www.activestate.com 에서 window용 perl을 다운을 받는다

http://www.activestate.com/Products/Download/Download.plex?id=ActivePerl

3. 다운받은 perl을 인스톨을 한다.
perl 인스톨이 기본적으로 c:Perl로 인스톨이 된다



4. perl을 인스톨후 awstats를 인스톨한다
awstats는 perl이 설치가 되어 있지 않으면 설치중에 에러 메세지를 띄워주므로
반드시 perl을 설치후 인스톨을 하길 바란다

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

Posted by 홍반장

2008/02/05 10:57 2008/02/05 10:57
Response
No Trackback , No Comment
RSS :
http://tcbs17.cafe24.com/tc/rss/response/2982

-- 문자열 구분자 분할 및 분할된 배열 갯수만큼 반복



declare @tstr varchar(100)
, @i int
, @tsql varchar(5000)
, @k int

create table #tbTemp
(aa varchar(50))

set @k = 1
while exists (select aa from tempTb where idx = @k)
Begin
select @tstr=aa from tempTb where idx = @k
select @i = charindex('||', @tstr)
if @i > 0
begin
while @i > 0
begin
insert into #tbTemp values(left(@tstr, charIndex('||', @tstr)-1))
select @tstr = substring(@tstr, charindex('||', @tstr) + 2, len(@tstr))
select @i = charindex('||' , @tstr)
end
select @tsql = left(@tsql, len(@tsql)-2)
insert into #tbTemp values (@tstr)
end
else
insert into #tbTemp values(@tstr)

set @k = @k + 1
End

select aa, count(aa) as cnt from #tbTemp
group by aa
order by aa

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

Posted by 홍반장

2008/01/28 17:41 2008/01/28 17:41
Response
No Trackback , No Comment
RSS :
http://tcbs17.cafe24.com/tc/rss/response/2954



< FORM>
< INPUT TYPE="button" VALUE="홈페이지로 만들기" onClick="this.style.behavior='url(#default#homepage)'; this.setHomePage('http://www.javascript.co.kr');">
< /FORM>

< FORM>
< INPUT TYPE="button" VALUE="즐겨찾기에 추가" onClick="window.external.AddFavorite(parent.location.href, document.title);">
< /FORM>

< a href="javascript:void(0)" onClick="window.external.AddFavorite(parent.location.href, document.title);">즐겨찾기에 추가하기
크리에이티브 커먼즈 라이센스
Creative Commons License
이올린에 북마크하기

Posted by 홍반장

2008/01/23 22:00 2008/01/23 22:00
Response
No Trackback , No Comment
RSS :
http://tcbs17.cafe24.com/tc/rss/response/2942

[javascript] 특수문자 입력 금지

//--- 특수문자 입력 금지
var mikExp = /[$\\@\\\#%\^\&\*\(\)\[\]\+\_\{\}\`\~\=\|]/;

function UpdateOrderDetail(){
var f = document.goods_main;

if(f.webfile.value == "" && f.webtext.value == "" && f.appfile.value == "" && f.apptext.value == "" && f.old_webfile.value == "" && f.old_appfile.value == "" )
{
// alert("내용이 없습니다.");
// f.webfile.focus();
// return false;
}

if(f.apptext.value.search(mikExp) == -1) {
//alert("짝짝짝");
//return false;
}else {
alert("다음과 같은 특수문자는 \n\n @ $ % ^ & * # ( ) [ ] { + } ` ~ = | \n\n 입력하시면 안됩니다.");
f.apptext.select();
//f.apptext.focus();
return false;
}

f.action.value = "facture_update";
f.submit();

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

Posted by 홍반장

2008/01/23 20:12 2008/01/23 20:12
Response
No Trackback , No Comment
RSS :
http://tcbs17.cafe24.com/tc/rss/response/2941

< !DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN">
< HTML>
< HEAD>
< META http-equiv="content-type" content="text/html; charset=euc-kr">
< TITLE> Jasko Sample Script < /TITLE>

< !---- [1단계] 아래의 소스코드를 와 사이에 붙여 넣으세요 ---->

< SCRIPT LANGUAGE="JavaScript">
< !--
function copyit(theField) {
var tempval=eval("document."+theField)
tempval.focus()
tempval.select()
therange=tempval.createTextRange()
therange.execCommand("Copy")
}
//-->
< /script>

< !------------------------- 여기까지 ---------------------------------->

< /HEAD>

< BODY>

< !---- [2단계] 아래의 방법으로 원하는 위치에 복사 해 넣으세요 ------------------>

< form name="it">
< div align="center">
< input onclick="copyit('it.select1')" type="button" value="클릭" name="cpy">
< p>
< textarea name="select1" rows="5" cols="40">
버튼을 클릭하면 이 내용은 자동으로 선택되고 클립보드에 복사됩니다
< /textarea>
< /div>
< /form>

< !------------------------- 여기까지 ---------------------------------->

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

Posted by 홍반장

2008/01/23 13:34 2008/01/23 13:34
Response
No Trackback , No Comment
RSS :
http://tcbs17.cafe24.com/tc/rss/response/2940

회원등록 폼 등에서 요긴하게 사용할 수 있겠네요

IE 5.0 이상에서만 되는군요.
하긴 뭐 요즘은 전부 5.5 이상이니..

< INPUT TYPE = text STYLE = "ime-mode:active" >
크리에이티브 커먼즈 라이센스
Creative Commons License
이올린에 북마크하기

Posted by 홍반장

2008/01/22 15:09 2008/01/22 15:09
Response
No Trackback , No Comment
RSS :
http://tcbs17.cafe24.com/tc/rss/response/2935

matabase.xml 파일 수정하세요

upload 문제
1. IIS6.0 콘솔에서 컴퓨터이름에서 속성 - 메타베이스 직접편집 허용체크합니다.
2. %SystemRoot%\System32\Inetsrv\Matabase.xml 을 NotePad로 엽니다.
3. AspMaxRequestEntityAllowed="204800" 값을
AspMaxRequestEntityAllowed="1500000000" 으로 변경합니다
4. AspMaxRequestEntityAllowed 의 값을 시스템이 사용가능한
최대값으로 설정하고 싶다면 AspMaxRequestEntityAllowed="-1" 로 변경합 니다.

download 문제
1. IIS6.0 콘솔에서 컴퓨터이름에서 속성 - 메타베이스 직접 편집 허용
체크합니다.
2. %SystemRoot%\System32\Inetsrv\Matabase.xml 을 NotePad 로 엽니다.
3. AspBufferingLimit="4194304" 값을 더 크게 변경합니다.
크리에이티브 커먼즈 라이센스
Creative Commons License
이올린에 북마크하기

Posted by 홍반장

2008/01/18 14:28 2008/01/18 14:28
Response
No Trackback , No Comment
RSS :
http://tcbs17.cafe24.com/tc/rss/response/2927

« Previous : 1 : ... 51 : 52 : 53 : 54 : 55 : 56 : 57 : 58 : 59 : ... 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:
240467
Today:
263
Yesterday:
856