
전체 글
How To Use CeRapiInvoke
How To Use CeRapiInvoke() View products that this article applies to. Article ID : 299891 Last Review : August 30, 2004 Revision : 1.0 This article was previously published under Q299891 On This Page SUMMARY MORE INFORMATION Using CeRapiInvoke() in Block Mode Using CeRapiInvoke in Stream Mode Building Modules That Use RAPI APPLIES TO SUMMARY The remote API (RAPI) CeRapiInvoke() enables you to in..
PDA에서 외장 메모리 삽입/삭제 시 이벤트
QA: How to implement autorun from a storage card? By Joao Paulo Figueira, June 02, 2003. Print version Question I want to start an application when the user inserts or removes a storage card. How do I implement such functionality? Answer You can execute an application when a storage card is inserted or removed from your device. This may allow your users to install applications, perform backups, ..
UTF-8 인코딩 방식으로 다국어 페이지 만들기
1. 일반 Ansi 형식이 아닌 UTF-8형식의 Text파일로 스크립트 파일을 저장합니다. 2. 서버 스크립트 최상단에 위의 코드를 넣어줍니다. 3. html 해더부에 위의 코드를 넣어 줍니다. =-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=- 예재 소스 입니다. inputUnicode.html ------------------------------------------------------------ testUnicode.asp ------------------------------------------------------------ function.asp ------------------------------------------------..
자바스크립트용 email 주소 검사 함수
function CheckMail( str ) { var regValidMail=/^[^@]+@[^\.]+[\.][^$]+$/g; if( regValidMail.test(str) ) { return true; } return false; }