IT정리노트

블로그 이미지

Edward. K

메멘토적 기억능력을 소유한 개발자 노트.

'Programming/JavaScript'에 해당되는 글 44건

제목 날짜
  • VB <-> JS 2008.08.21
  • sub root 주소 숨기는 방법. 2008.08.08
  • JavaScript and Ajax Tips & Tutorials - 20081 2008.07.04
  • sun 의 ajax 강의 2008.06.12
  • Refresh page 이동 2008.05.28

VB <-> JS

Programming/JavaScript 2008. 8. 21. 08:13
반응형
    //  Val("x") 스트링 -> int

    // IsNumeric    : 숫자여부
        [VB] IsNumeric(p_Value)
            -> [JS] isNumber(p_Value)    : user func

    // Mid(p_Value, 2, 1):   한 문자열에서 시작위치에서 지정한 수 만큼이 문자들
    // Left(문자열,문자길이)
        문자열의 왼쪽에서 오른쪽으로 문자 하나 하나 읽어 들입니다. 그리고 읽어들일 위치가 3이라면 3번째 문자 까지 읽어들입니다.
            [VB] Left(p_Identifier, id_pos - 1);
                -> [JS] p_Identifier.substr(0,id_pos - 1);


    //     instr : 찾고자 하는 문자를 처음부터 찾아서 제일먼저 나오는 문자의 위치를 돌려줍니다.
        xx=inStr("c:\windows\exeplorer.exe","\")
            [VB]  InStr(p_Identifier, ".")
                -> [JS] var id_pos = p_Identifier.indexOf(".");
반응형
Posted by Edward. K

sub root 주소 숨기는 방법.

Programming/JavaScript 2008. 8. 8. 09:48
반응형
Tomcat 에 다음과 같이 sub root를 추가 했다고 치자.

<Context path="/test" docBase="C:\Project\test\" privileged="true" antiResourceLocking="false" antiJARLocking="false"/>
   >> C:\Tomcat5\conf\server.xml

그렇다면. web 에서의 접근은   http://127.0.0.1:8080/test  게 된다.

이   /test  라는 prefix 경로를 없애고자 한다면. 다음과 같이 하자
그러면 주소창에는 http://127.0.0.1:8080  이렇게만 보이게 된다.
단, 프레임대로 하자.


C:/Project/test/index.html
 <html>
<head>
<script>
    top.location.href = "/";    /* 상위 폴더를 호출*/
</script>
</head>
</html>

C:/Tomcat5/webapps/ROOT/index.html
<html>
<head>
<meta http-equiv="REFRESH" content="100;URL=http://127.0.0.1/">
<META NAME="src" CONTENT="index.html">
<title>The Only Process</title>
</head>
<frameset rows="*,0" border=0>
    <frame name="main_top" src="/test/intro.html">  <!-- 초기 호출될 파일-->
    <frame name="work_top" src="">
</frameset>
</html>

반응형
Posted by Edward. K

JavaScript and Ajax Tips & Tutorials - 2008

Programming/JavaScript 2008. 7. 4. 14:04
반응형

http://www.webreference.com/programming/javascript/  [2008-06-18]

JavaScript and Ajax Tips & Tutorials - 2008

JavaScript is an easy-to-use programming language that is common on Web pages. It can enhance the dynamics and interactive features of your site with small amounts of code.

Ajax (Asynchronous JavaScript and XML), is a group of inter-related Web development techniques (including JavaScript, PHP, among others) used for creating interactive Web applications.

How to Use a JavaScript Query String Parser
In this article you'll learn how to obtain and use the data from the query string portion of the URL by using a JavaScript query string parser. This script is especially useful for people whose Web sites are served by free hosting providers. By Joseph K. Myers. 0612
How to Create an Ajax Autocomplete Text Field
• Part 1: In this series we're going to use AJAX to create an autocomplete text field using the Eclipse Web Tools Platform with the Apache Tomcat server. In this installment, we'll learn how to configure the development environment.
• Part 2: In this installment we'll construct the The Fund Java class, which will act as a container for all the fund's properties. On the server, we'll store a collection of funds to be searched. Matching ones will be converted to a JSON array and returned to the browser for displaying in our autocomplete list.
• Part 3: In this installment we'll be developing the AutocompleteServlet. The servlet acts much like an ASP, Perl or PHP script in that it's executed by the server and accepts parameters from the browser.
• Part 4: Now it's time to turn our attention to the Web components. This week we'll create the CSS file, since it, along with the JavaScript file, need to be linked to the AutocompleteSearch.jsp page.
• Part 5: In part 4 of the series, we defined the appearance of our autocomplete control using an external cascading style sheet (CSS). This week we'll create a JavaScript file to manage the behavior of the autocomplete control in the browser.
• Part 6: In part 5 of the series, the AutocompleteList JavaScript file, we wrote the client-side script to manage the behavior of the Autocomplete control in the browser. This week we're going to finish the remaining Web files, including the AutocompleteSearch.jsp page.
• Part 7: In this series we've built a fully functional Autocomplete control within Eclipse. For the remaining installments, we'll be updating the Autocomplete control's layout to CSS, decoupling it from the Autocomplete.jsp page, tweaking the appearance of the list, and implementing additional functionality.
• Part 8: This week we look at how to add a vertical scrollbar to the list. We're also going to use a parameter to set the list size, so a vertical scrollbar will appear when the number of items exceeds it.
• Part 9: This week we continue to add functionality and tweak the appearance of our control by implementing search string matching in the list items and by adding a CSS drop shadow effect.
An Introduction to JavaScript Object Notation (JSON)
JavaScript Object Notation, or JSON for short, is a lightweight data-interchange format which may prove to be a viable alternative to XML for IT developers. It's easy to read and write by people as well as for machines to parse and generate. By Rob Gravelle. 0227
Using Multiple JavaScript Onload Functions
When scripts are written they're used to accomplish a given task, such as creating a rotating picture gallery, or to validate a form. For each task, a separate script is necessary. Often, a script is called using an onload function. By Lee Underwood. 0121
Universally Related Popup Menus Ajax Edition
• Part 1: This week we look at a brief overview of AJAX, some relevant JavaScript 1.3 enhancements, how to run the example and using the script within your own Web page. By Rob Gravelle. 0123
• Part 2: Last week we looked at a brief overview of Ajax, relevant JavaScript 1.3 enhancements, how to run the example and using the script within your own Web page. This week we look at additional functionality that you'd like to add to scripts and an in-depth explanation of the JavaScript code. By Rob Gravelle. 0130
• Part 3: Last week we looked at an in-depth explanation of the JavaScript code. This week, we conclude the series with a line-by-line walkthrough of the JavaScript code and describe the server-side classic ASP script code. By Rob Gravelle. 0206

Archived JavaScript and Ajax Tips & Tutorials

  • All articles from 2007
  • All articles from 2006
  • All articles from 2005
  • All articles from 2004
  • All articles from 2003
  • All articles from 2002 & earlier

Specs and Documentation

Core JavaScript Reference: Version 1.5
This book (in HTML format) is a reference manual for the core JavaScript language, version 1.5. Can be used in conjunction with the Core JavaScript Guide, listed below. Written by the developers at Netscape Communications. An excellent resource.
Core JavaScript Guide: Version 1.5
Starting at the beginning, this reference explains everything you need to know about using core JavaScript. This reference assumes you have the following basic background: a general understanding of the Internet and the World Wide Web and a good working knowledge of HTML. Written by the developers at Netscape Communications. An excellent resource.
JScript Documentation
Technical information and tutorials. From Microsoft.
ECMAScript Language Specification
A PDF version of the official specification for ECMAScript, the vendor-neutral standard for what was originally Netscape's JavaScript

JavaScript Book Excerpts

Here is our complete library of book excerpts covering JavaScript and Ajax.

Archived Doc JavaScript Columns

The Doc JavaScript Archive - These JavaScript articles were written by the Doc JavaScript team (Yehuda Shiran and Tomer Shiran) between 1997 and 2002.

Other Tutorials [Off Site]

Beginning JavaScript Tutorials
Tutorials designed so that even beginners can begin using javascripts on a web page.
JavaScript for the Total Non-Programmer
A good introductory tutorial for beginners. This site walks you throught the basics of Javascript.
JavaScript Tutorial for Programmers
A JavaScript tutorial aimed primarily at those with some prior programming experience. Focuses on illustrating the syntax and methodology of JavaScript.

Collections

About.com's JavaScript
Weekly how-tos and resources from About.com.
All About JavaScript
Canned scripts, tips and tricks, and links to JS info around the world. From WebDeveloper.com, another part of the internet.com family of sites.
BrainJar
All about Web development and programming. Rather than simple "cut and paste" listings, you'll find detailed articles on client and server side coding. Supports W3C standards. By Mike Hall.
Danny Goodman's JavaScript Pages
Examples of JavaScript implementation available for downloading in addition to the JavaScript mini-FAQ. Goodman is a noted author and scripter.
Dynamic Drive
Free DHTML sripts and components for your Web site. Frequently updated.
Google's JavaScript Resources
JavaScript references and listings from DMOZ/Google.
JavaScript.com
This WebReference affiliated site is your gateway to all things JavaScript. Featuring javascript tutorials, free java scripts, tools, and links.
javascripts.com
A database with free JavaScripts, discussion groups and news.
JavaScript and CSS DevCenter
O'Reilly Net's JavaScript portal, includes JavaScript news feed.
JavaScript Source
An excellent JavaScript resource with lots of free cut & paste JavaScript examples with source code included.
JavaScript Kit
Tutorials, code, and discussion. Constantly updated for new material and revisions.

Recent Articles — WebReference.com

Book Review: Head First JavaScript
Web Hosting Control Panels
Use Your Blog for Fast Search Engine Rankings

Recent Articles — internet.com

Looking at Memory Usage for Oracle Processes
Microsoft Adds Subcription Model for Office
Proximic's Mission: Ad Networks Open to All


Revised: June 13, 2008

반응형
Posted by Edward. K

sun 의 ajax 강의

Programming/JavaScript 2008. 6. 12. 13:38
반응형
AJAX Developer Resource Center
 
Skip over tab links
개요
FAQ
Active Tab온라인강좌
툴
커뮤니티
다운로드
"AJAX Programming” 온라인 강좌(10주 과정)
  썬마이크로시스템즈 자바 에반젤리스트 신 상 철 진행

썬마이크로시스템즈에서 자바 에반젤리스트로 활발히 활동 중이시며, 한국에도 방한하여 JCO Conference 등에서 열정적인 강의를 선보이셨던 신상철씨가 오는 8월 4일부터 10주간 AJAX 무료 온라인 강좌를 진행합니다.
국내 개발자 여러분들의 많은 참여 바랍니다.
(본 강좌는 전세계 개발자 대상이므로 영어로 진행됩니다.)


2006년 8월 4일에 “AJAX Programming” 무료 온라인 코스(10주 과정)가 시작됩니다. AJAX를 처음 배우시는 분이나, 실력을 더 쌓고 싶으신 분 모두 수강하실 수 있습니다. 10주의 코스 동안 AJAX의 기본 컨셉부터 Dojo 툴킷, jMAki, Google Web Toolkit, AJAX-fied JavaServer Faces (JSF) components와 같은 다양한 AJAX 프레임웍과 툴킷의 사용법까지 모두 배우게 됩니다.

이 코스는 온라인상에서 진행된다는 것과 무료라는 것을 제외하면 실제 대학 수업처럼 진행됩니다. 프레젠테이션 자료를 공부한 뒤에는 매주 숙제가 나가며, 모르는 것을 서로 질문/답변할 수 있도록 수강생 메일링 리스트가 제공됩니다. 수업에 필요한 모든 강의자료(슬라이드, 강의노트, 플래쉬 데모 파일, 실습 자료, 과제물 등 포함)는 웹사이트에서 제공됩니다. 아래 주소로 내용이 없는 이메일을 하나 보내시면 바로 자동으로 등록하실 수 있습니다.
ajaxworkshop-subscribe@yahoogroups.com

 강좌 바로가기» http://www.javapassion.com/ajaxcodecamp/
 신상철씨 약력 및 지난 2월 2006 JCO Conference 컨퍼런스 발표자료 보기»
 
한국 썬 교육센터
다양한 교육의 기회를 누리세요!
» 지금 보기
썬 SCJP 5.0 자격증 한글화 이벤트
썬의 국제 공인 자격증 SCJP 5.0이 한글화되어 출시되었습니다. 출시를 기념하여 다양한 이벤트를 진행합니다.
» 자세히
[spacer]


http://kr.sun.com/developers/ajax/onlinecourse.html

반응형
Posted by Edward. K

Refresh page 이동

Programming/JavaScript 2008. 5. 28. 13:18
반응형
<meta http-equiv="refresh" content="5; url=http://eknote.tistory.com">

이런거 하지마셈....짜증남.-_-;
반응형
Posted by Edward. K
이전페이지 다음페이지
블로그 이미지

메멘토적 기억능력을 소유한 개발자 노트.

by Edward. K

공지사항

    최근...

  • 포스트
  • 댓글
  • 트랙백
  • 더 보기

태그

  • 가상화폐무료
  • eclipse plugin
  • 컴퓨터 관리
  • netbeans
  • 플래시 게임
  • 전자정부프레임워크
  • 이미지 편집
  • sqlgate
  • rocketdock
  • android
  • ERwin
  • 개한민국
  • 미네르바
  • 사업 이야기
  • toad
  • Eclipse
  • STS
  • tomcat
  • 캡쳐툴
  • egov
  • Flash Player
  • 이클립스
  • 중독성게임
  • Jboss
  • flex
  • EditPlus
  • Graphic
  • 색상코드표
  • iBATIS
  • EkNote

글 보관함

«   2025/08   »
일 월 화 수 목 금 토
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
31

링크

카테고리

분류 전체보기 (792)
행운이와함께 (1)
EkNote Project (18)
ARIS (0)
Android (2)
LINK (39)
UML (9)
Programming (154)
Cobol (0)
ASP (0)
CSS (5)
C_C++ (2)
IBatis (2)
JSP (3)
JAVA (76)
JavaScript (44)
PHP (2)
Utility (76)
Protable (3)
MobileProgram (4)
SKT (0)
KTF (0)
LGT (0)
자료들 (4)
DB (82)
mongoDB (0)
MySQL (8)
Oracle (61)
MSSQL (4)
Graphic (8)
Flash (3)
PhotoShop (3)
SourceFactory (4)
Collection (73)
작가의기막힌상상력 (14)
미소를찾아보는공간 (44)
내심장은작동중일까 (6)
멀더와스컬리의노트 (3)
이건어디에사용할까 (6)
Edward (275)
나만 알기엔 아까워 (100)
기억하기 위한 기록 (123)
시선이 머무는 공간 (50)
숨기고 싶은 이야기 (2)

카운터

Total
Today
Yesterday
방명록 : 관리자 : 글쓰기
Edward. K's Blog is powered by daumkakao
Skin info material T Mark3 by 뭐하라
favicon

IT정리노트

메멘토적 기억능력을 소유한 개발자 노트.

  • 태그
  • 링크 추가
  • 방명록

관리자 메뉴

  • 관리자 모드
  • 글쓰기
  • 분류 전체보기 (792)
    • 행운이와함께 (1)
    • EkNote Project (18)
    • ARIS (0)
    • Android (2)
    • LINK (39)
    • UML (9)
    • Programming (154)
      • Cobol (0)
      • ASP (0)
      • CSS (5)
      • C_C++ (2)
      • IBatis (2)
      • JSP (3)
      • JAVA (76)
      • JavaScript (44)
      • PHP (2)
    • Utility (76)
      • Protable (3)
    • MobileProgram (4)
      • SKT (0)
      • KTF (0)
      • LGT (0)
      • 자료들 (4)
    • DB (82)
      • mongoDB (0)
      • MySQL (8)
      • Oracle (61)
      • MSSQL (4)
    • Graphic (8)
      • Flash (3)
      • PhotoShop (3)
    • SourceFactory (4)
    • Collection (73)
      • 작가의기막힌상상력 (14)
      • 미소를찾아보는공간 (44)
      • 내심장은작동중일까 (6)
      • 멀더와스컬리의노트 (3)
      • 이건어디에사용할까 (6)
    • Edward (275)
      • 나만 알기엔 아까워 (100)
      • 기억하기 위한 기록 (123)
      • 시선이 머무는 공간 (50)
      • 숨기고 싶은 이야기 (2)

카테고리

PC화면 보기 티스토리 Daum

티스토리툴바