일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
- swingx
- jsr 296
- iBATIS
- 가우스
- sencha touch
- PLSQL
- PHP
- appspresso
- Android
- 전자정부프레임워크
- JSON
- MySQL
- oracle
- Struts
- ibsheet
- dock
- tomcat
- GPS
- WebLogic
- phonegap
- Eclipse
- rowspan
- Spring
- MFC
- Ajax
- 선택적조인
- JDOM
- Google Map
- node.js
- jQuery
- Today
- Total
목록Developement/Web (137)
Where The Streets Have No Name
객체를 생성할때 파라미터를 object로 넘김 function User( properties ) { for ( var i in properties ) { (function(){ this[ "get" + i ] = function() { return properties[i]; }; this[ "set" + i ] = function(val) { properties[i] = val; }; })(); } } var user = new User({ name: "Bob", age: 44 });
In the previous smalltalk ZK with Spring DAO and JDBC, we have shown you how to use ZK with Spring DAO beans and access persistent data via JDBC sql code. In this article, according to the same sample application, we want to show you how to access a Spring bean object by its id in zscript and EL expression the easy way. The sample project use the eclipse as programming environment. The Tomcat is..
The ZK is the best way to develop your web's user interface. The Spring Framework is the leading full-stack Java/J2EE application framework. Spring framework delivers significant benefits for many projects, reducing development effort and costs while improving test coverage and quality. We give you an brief introduction to bring Spring DAOs and JDBC into your web application. With the Spring fra..
Hello World! 서버호출 서버호출Get Please enter your name: Please enter your name: 서버 # jsp source
출처:http://ilikefox.tistory.com/1 /** * * Base64 encode / decode * http://www.webtoolkit.info/ * **/ var Base64 = { // private property _keyStr : "ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789+/=", // public method for encoding encode : function (input) { var output = ""; var chr1, chr2, chr3, enc1, enc2, enc3, enc4; var i = 0; input = Base64._utf8_encode(input); while (i < input..
출처:http://www.okjsp.pe.kr/seq/68391 // This code was written by Tyler Akins and has been placed in the // public domain. It would be nice if you left this header intact. // Base64 code from Tyler Akins -- http://rumkin.com var keyStr = "ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789+/="; function encode64(input) { var output = ""; var chr1, chr2, chr3; var enc1, enc2, enc3, enc4;..
# javascript상에서 넘길때 escape(encodeURIComponent('한글파라미터')); # java에서 파라미터를 받을때 URLDecoder.decode('받은파라미터', "UTF-8");
/* Create by nhosw at i-swear.com 2007. 05. 08 어버이날을 맞이하여.. 이 주석은 지우지 말아주시길 바랍니다. ps. 사용중 더 좋은 방법이나 버그가 있을 경우 메일로 부탁드립니다. 소스를 오픈한다는것은 더 좋은 소스로 고치기 위함이 아닐까요...... 감사합니다. 사용법 바코드를 그릴 페이지에 아래의 스타일 시트를 선언해주셔야 합니다. 바코드를 그릴 라인에서 아래와 같이 써줍니다. */ var s; var b; var b_; var s_; var bar_ar = new Array(); bar_ar["0"] = "1010011011010"; bar_ar["1"] = "1101001010110"; bar_ar["2"] = "1011001010110"; bar_ar["3"..
출처 : http://blog.naver.com/johnrivelt/100036291898 첫번째, 객체의 생성 var arr = []; var obj = {}; var str = ""; var arr1 = [1,2,3]; var obj1 = {prop1 : 'value1', "prop2" : 'value2'}; Object는 {} 로, Array는 []로 생성할 수 있다. object 를 생성할 때 property 의 이름은 따옴표를 따로 해주지않아도 prop1의 경우처럼 그냥 사용할 수 있다. 하지만, 혹시라도 있을지 모르는 문제점(prop1이 변수로 선언되어있다던가하는…)을 미리 방지하기 위해서 따옴표를 붙여주도록 하는게 좋다. 단, 충돌이 없음이 확실하다면 생략해도 무방하다. 두번째, object..
http://blog.naver.com/bacchusl/50005631860
http://www.openjs.com/scripts/events/keyboard_shortcuts/
http://___.constantology.com/observe_method/ Christos Constandinou has created Event.observeMethod ,a library that gives you a way of adding event listeners to methods inan object and running other methods before, around and/ or after themethod you are listening to.The code itself is small, based on Prototype, and only 49 lines (1.8kb), uncompressed.JAVASCRIPT: Event.observeMethod( window, 'myNe..
출처 : http://blog.naver.com/tear230/100017622655 자바스크립트에서 문자열을 합치는 방법 글을 읽고 조금 변경해서 올려봅니다.
TypePrefixExampleArray aaValuesBoolean b bFoundFloat (Number) f fValueFunction fn fnMethodInteger (Number) i iValueObject o oTypeRegular Expression re rePatternString s sValueVariant (can be any type) v vValue
Introduction File uploading thru HTTP is always big problem for websites. There are some restrictions from client and server sides. But with growing internet channels bandwidth one of major problem is file size. Sometimes it’s impossible to send 500MB file to webserver due to request length limit. One of the workaround is to increase maximal request length on webserver, but it may cause server r..
http://kwon37xi.egloos.com/2558053
Exploring Client-Side Cross Browser XML Data-Binding - Part 1 http://jsontools.sourceforge.net/
/* * 출처 : http://beppu.lbox.org/articles/2006/09/06/actsasaspect */ functionactsAsAspect(object) { object.yield = null; object.rv = { }; object.before = function(method, f) { var original = eval("this." + method); this[method] = function() { f.apply(this, arguments); return original.apply(this, arguments); }; }; object.after = function(method, f) { var original = eval("this." + method); this[met..
http://www.jroller.com/page/deep/20030701 http://zer0.free.fr/aspectjs/ http://beppu.lbox.org/articles/2006/09/06/actsasaspect http://www.ccs.neu.edu/home/dherman/javascript/behavior/ http://calculist.blogspot.com/2005/07/aop-in-javascript.html http://lambda-the-ultimate.org/node/816 http://www.dodeca.co.uk/ajs_About_AspectJS.htm