< !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

외부smtp로 메일보내기

일단 환경에 대해 설명을 하자면
외부smtp로 사용하고 하는 서버는 2000 이구, nMail이 깔려있는 상태구여
메일발송을 하려고 하는 서버는 2003 입니다

nMail환경설정에서 스팸에 대한 처리는 다 해놨구여
smtp포트는 25번을 사용합니다

제가 사용한 소스는 아래와 같구여

'메일보내기
set objMessage = createobject("cdo.message")
set objConfig = createobject("cdo.configuration")

' Setting the SMTP Server
Set Flds = objConfig.Fields
Flds.Item("http://schemas.microsoft.com/cdo/configuration/sendusing") = 2
'1일 경우 로컬(SMTP), 2일 경우 외부(SMTP)로 메일전송
Flds.Item("http://schemas.microsoft.com/cdo/configuration/smtpserver") = "mail.aaa.com"
Flds.item("http://schemas.microsoft.com/cdo/configuration/smtpserverport") = 25
Flds.Item("http://schemas.microsoft.com/cdo/configuration/sendusername") = "계정명@aaa.com"
Flds.Item("http://schemas.microsoft.com/cdo/configuration/sendpassword") = "계정비번"
Flds.Item("http://schemas.microsoft.com/cdo/configuration/smtpauthenticate") = 1
Flds.Item("http://schemas.microsoft.com/cdo/configuration/smtpconnectiontimeout") = 30

Flds.update

Set objMessage.Configuration = objConfig
objMessage.To = to_email '보내는 사람 이메일 주소
objMessage.From = "보내는이<"&CompanyEmail&">" '받는 사람 이메일 주소
objMessage.Subject = subject '제목
objMessage.HTMLBody = content
objMessage.HTMLBodyPart.Charset="ks_c_5601-1987"

objMessage.fields.update
objMessage.Send

'Response.write "발송 완료!!!!"

set objMessage = nothing
set objConfig = nothing


//----- 성공소스


< %
Option Explicit

Response.Expires = -1
Response.AddHeader "Pragma", "no_cache"
Response.AddHeader "cache-control", "no_cache"
% >
< !--#include virtual="/inc/f_common.asp"-- >
< !--#include virtual="/inc/f_mssql.asp"-- >
< %
ConnectDB()

Dim iMsg
Dim iConf
Dim Flds

Set iConf = CreateObject("CDO.Configuration")
Set iMsg = CreateObject("CDO.Message")
Set Flds = iConf.Fields

With Flds
.Item("http://schemas.microsoft.com/cdo/configuration/smtpserver") = "192.0.0.1" '메일서버 지정
.Item("http://schemas.microsoft.com/cdo/configuration/smtpserverport") = 25 '포트
.Item("http://schemas.microsoft.com/cdo/configuration/sendusername") = "webmaster@ngio.co.kr"
.Item("http://schemas.microsoft.com/cdo/configuration/sendpassword") = "12345"
.Item("http://schemas.microsoft.com/cdo/configuration/sendusing") = 2
.Item("http://schemas.microsoft.com/cdo/configuration/smtpauthenticate") = 1

.Update
End With

With iMsg
Set .Configuration = iConf
.To = "김홍완"
.From = "엔지오"
.Subject = "메입입니다."
.HTMLBody = "메일내용메일내용메일내용메일내용메일내용메일내용"

'.fields.update
.Send
End With

Set iConf = nothing
Set iMsg = nothing
Set Flds = Nothing

Response.write "발송 완료!!!!"

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

Posted by 홍반장

2007/12/28 16:19 2007/12/28 16:19
Response
No Trackback , No Comment
RSS :
http://tcbs17.cafe24.com/tc/rss/response/2880

1. 서버에서 웹 브라우저에 응답되는 페이지의 화면 출력시 한글 처리
<%@ page contextType="text/html;charset=euc-kr" %>

2. 웹브라우저에서 서버로 넘어오는 파라키터 값에 한글이 있는 경우(Post 방식)의 한글 처리
<% request.serCharacterEncoding("euc-kr") %>

3. 웹 브라우저에서 서버로 넘어오는 파라미터 값에 한글이 있는 경우(Get 방식)의 한글 처리
<% request.setCharacterEncoding("euc-kr"); %>

위의 코드는 폼에 데이터를 입력해서 데이터 값을 파라미터로 웹 서버에 넘겨서 처리할때 메소드가 get 방식으로 넘어오는 경우로, 이렇게 코드를 기입해도 한글이 깨지는 경우가 있다.

이 경우에 한글을 깨지지 않게 하려면 URLEnding="EUC-KR" 문장을 추가한다.
크리에이티브 커먼즈 라이센스
Creative Commons License
이올린에 북마크하기

Posted by 홍반장

2007/12/24 14:14 2007/12/24 14:14
Response
No Trackback , No Comment
RSS :
http://tcbs17.cafe24.com/tc/rss/response/2869

Open Flash Chart - 그래프 활용

Open Flash Chart

PHP 로 구동되는거 같은데, 그래프에 유용하다.

적용해보자~

http://teethgrinder.co.uk/open-flash-chart/

http://www.maani.us/charts/index.php?menu=Gallery
크리에이티브 커먼즈 라이센스
Creative Commons License
이올린에 북마크하기

Posted by 홍반장

2007/12/20 11:48 2007/12/20 11:48
Response
No Trackback , No Comment
RSS :
http://tcbs17.cafe24.com/tc/rss/response/2860

JAVA 교육 기본코스 1, 2

JAVA 교육 기본코스 1



JAVA 교육 기본코스 2

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

Posted by 홍반장

2007/10/16 21:48 2007/10/16 21:48
Response
No Trackback , No Comment
RSS :
http://tcbs17.cafe24.com/tc/rss/response/2720

소켓 연동 컴포넌트

소켓 연동 컴포넌트


http://tech.dimac.net/Products/FreeProducts/w3Sockets/Reference/Refstart.htm


[ w3Sockets 다운로드 ]
크리에이티브 커먼즈 라이센스
Creative Commons License
이올린에 북마크하기

Posted by 홍반장

2007/09/28 15:31 2007/09/28 15:31
Response
No Trackback , No Comment
RSS :
http://tcbs17.cafe24.com/tc/rss/response/2694

ASP 텍스트 개별 인코딩 컴포넌트

http://www.example-code.com/asp/asp-encoding-
decoding.asp


[ 인코딩 컴포넌트 다운로드 ]
크리에이티브 커먼즈 라이센스
Creative Commons License
이올린에 북마크하기

Posted by 홍반장

2007/09/28 15:27 2007/09/28 15:27
Response
No Trackback , No Comment
RSS :
http://tcbs17.cafe24.com/tc/rss/response/2693

dll 파일 레지스트리에 등록

dll 파일 레지스트리에 등록

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

Posted by 홍반장

2007/09/28 15:16 2007/09/28 15:16
Response
No Trackback , No Comment
RSS :
http://tcbs17.cafe24.com/tc/rss/response/2692

« Previous : 1 : ... 14 : 15 : 16 : 17 : 18 : 19 : 20 : 21 : 22 : ... 33 : 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:
243884
Today:
235
Yesterday:
776