본문 바로가기 메뉴 바로가기

VoidNoble IT Zone

프로필사진
  • 글쓰기
  • 관리
  • 태그
  • 방명록
  • RSS

VoidNoble IT Zone

검색하기 폼
  • 분류 전체보기 (720)
    • AI (1)
    • 모바일 (119)
      • Flutter (0)
      • React Native (1)
      • 모바일웹 (20)
      • Android (54)
      • iOS (39)
      • 윈도우모바일 (1)
    • 웹프로그래밍 (313)
      • html (12)
      • js (77)
      • css (31)
      • NodeJS (13)
      • Python (1)
      • PHP (42)
      • ASP Classic (68)
      • GoLang (1)
      • Wordpress (6)
      • JSP (3)
      • .NET (6)
      • Scala (1)
      • XML (4)
      • 웹접근성 (6)
      • Adobe Air & Flex (2)
    • SQL (35)
      • MS-SQL (26)
      • MySql (5)
      • MongoDB (2)
    • OS-서버-서비스 (152)
      • macOS (9)
      • Docker (9)
      • CloudFlare (1)
      • NginX (5)
      • Git (3)
      • AWS (6)
      • Azure (4)
      • 구글 DFP (광고서버) (1)
      • Windows (72)
      • Elasticsearch (3)
      • IoT (1)
      • Linux (27)
    • 응용프로그래밍 (11)
      • Java (1)
      • C# (8)
      • Visual Basic (0)
      • VB.NET (0)
    • 디자인 (16)
      • Photoshop (5)
      • illustrator (0)
      • Flash (1)
      • 웹디자인 (6)
      • 디자인 리소스 (1)
      • Inspiration (0)
    • Tools (12)
      • Visual Studio Code (5)
      • sublime text (1)
      • PHPStorm (4)
    • 개발 옆차기 (1)
    • 서비스들 (18)
    • 용어?영어? (2)
    • 문서-사무-OA (0)
    • 자료실 (34)
    • 하드웨어 (0)
    • 네트워크 (2)
    • 개발자 생활로그 (4)
  • 방명록

JSON (8)
JSON Escape

'=================================================================== ' JSON 문자 escape '------------------------------------------------------------------ ' string json_escape(string str) '=================================================================== Function json_escape(str) If NOT isset(str) then json_quot = str Exit Function End If '// 특수문자 처리 str = Replace(str, "\", "\\") str = Replace(..

웹프로그래밍/ASP Classic 2013. 5. 22. 12:02
문자열을 JSON 형식으로 만들때 Escape

key = "kkk" value = "vvv" 변수들을 JSON 형식 {key:value} 으로 만들때 특수문자 Escape '// JSON Escape Function json_escape(str) If isEmpty(str) Or isNull(str) Then Exit Function str = Trim(str) str = Replace(str, """", """) str = Replace(str, "'", "'") str = Replace(str, "\", "\\") str = Replace(str, Chr(13) & Chr(10), "\n") str = Replace(str, Chr(13), "\n") str = Replace(str, Chr(10), "\n") str = Replace(str, ..

웹프로그래밍/ASP Classic 2012. 1. 31. 14:16
jQuery.postJSON ?

jQuery.getJSON 은 GET 방식으로 전송한다. 그러면 post 방식으로 전송하고 json 으로 응답받으려면? $.post(url, data, function(jsonResponse) { // Do something with jsonResponse }, 'json'); [출처] http://abeautifulsite.net/blog/2008/05/postjson-for-jquery/

웹프로그래밍/js 2012. 1. 3. 13:47
안드로이드 JSON 파싱

* 원격 json 파일 파싱하여 listView로 보여주기 http://p-xr.com/android-tutorial-how-to-parse-read-json-data-into-a-android-listview/

모바일/Android 2011. 11. 27. 23:20
jQuery 이용 json 으로 폼 값 입력

$(function(){ // 값 입력 var jsonData = {"subject":subject_value, "content":content_value}; for (objName in jsonData){ $('#'+ objName).val( (jsonData[objName])? jsonData[objName] : '' ); } }

웹프로그래밍/js 2011. 8. 25. 16:56
Ajax with Classic ASP

jQuery의 getJSON사용 시 다른 도메인 데이터가져오기(CrossDomain) http://mudchobo.tomeii.com/tt/441 Generate JSON from VBScript (ASP) datatypes http://www.webdevbros.net/2007/04/26/generate-json-from-asp-datatypes/ Ajax with Classic ASP using jQuery http://www.mikesdotnetting.com/Article/98/Ajax-with-Classic-ASP-using-jQuery Any good libraries for parsing JSON in Classic ASP? http://stackoverflow.com/questions/10..

웹프로그래밍/ASP Classic 2010. 4. 2. 15:56
JSON Parse~parsing

JSON 문법검사기 http://www.jsonlint.com/ Cross browser 에서의 흥미로운 예제들 IE8 JSON.parse(”{ ‘a’:1 }”) : Syntax Error CHROME JSON.parse(”{ ‘a’:1 }”) : OK FF JSON.parse(”{ ‘a’:1 }”) : Syntax Error OPERA 10.10 JSON.parse(”{ ‘a’:1 }”) : Undefined variable JSON SAFARI 4.0.4 JSON.parse(”{ ‘a’:1 }”) : Syntax Error jQuery 1.3 까지는 고유의 parsing 기술이 쓰이기에 1: $.ajax({url: "/url", 2: dataType: "json", 3: success: functio..

웹프로그래밍/js 2010. 1. 28. 17:11
[Prototype] JSON과 setValue 로 폼 요소들 값 채우기

+ prototypeUtils.js /* prototypeUtils.js from http://jehiah.com/ Licensed under Creative Commons. version 1.0 December 20 2005 version 2.0 2010-01-08 by darthJun Contains: + unpackToForm() */ function unpackToForm(data){ for (i in data){ var val = (data[i]==null)? '' : data[i].valueOf(); if($$("input[type=radio][name='"+i+"']").length > 1) { // when element is radio group $$("input[type=radio][n..

웹프로그래밍/js 2010. 1. 8. 19:48
이전 1 다음
이전 다음
공지사항
  • 비방 욕설 의견은 바로 삭제해 드립니다
최근에 올라온 글
최근에 달린 댓글
Total
Today
Yesterday
링크
  • Make Use Of
  • How to geek
  • 인터넷 통계정보 검색시스템
  • 트위터 공유 정보모음
  • 웹표준KR
  • 치우의 컴맹탈출구
  • Dev. Cheat Sheets
  • w3schools
  • Dev. 조각들
  • ASP Ajax Library
  • CSS Tricks
  • WebResourcesDepot
  • jQuery Selectors Tester
  • DeveloperSnippets
  • Smashing Magazine
  • Nettuts+
  • devListing
  • 웹 리소스 사이트(한)
  • Mobile tuts+
  • Dream In Code
  • Developer Tutorials
  • CSS3 Previews
  • 자북
  • 안드로이드 사이드
  • Code Visually
  • Code School
  • SQLer.com
  • 무료 파워포인트 템플릿
  • iconPot
  • Free PowerPoint Templates
  • Design Bombs
  • Web Designer Wall
  • 1st Webdesigner
  • Vandelay Design
  • 무료 벡터 이미지 사이트들
  • Tripwire Magazine
  • Web TrendSet
  • WebMonkey
  • 윤춘근 프리젠테이션 디자이너 블로그
  • cz.cc 무료 DNS
  • [웹하드] MediaFire
  • [웹하드] DivShare
  • 한컴 인터넷 오피스
TAG
  • git
  • Debug
  • classic asp
  • Android
  • laravel
  • 안드로이드
  • Linux
  • PHP
  • mssql
  • sencha touch
  • nodejs
  • Prototype
  • IE
  • JQuery
  • javascript
  • centos
  • 워드프레스
  • macos
  • Wordpress
  • JSON
  • 한글
  • Docker
  • CSS
  • Mac
  • iphone
  • IOS
  • API
  • ASP
  • iis
  • nginx
more
«   2025/05   »
일 월 화 수 목 금 토
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
글 보관함

Blog is powered by Tistory / Designed by Tistory

티스토리툴바