UTF-8 페이지에서 사용할것.
한글, 특수문자도 잘됨.
<%
FUNCTION URLDecode(str)
'// This function:
'// - decodes any utf-8 encoded characters into unicode characters eg. (%C3%A5 = å)
'// - replaces any plus sign separators with a space character
'//
'// IMPORTANT:
'// Your webpage must use the UTF-8 character set. Easiest method is to use this META tag:
'// <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
'//
Dim objScript
Set objScript = Server.CreateObject("ScriptControl")
objScript.Language = "JavaScript"
URLDecode = objScript.Eval("decodeURIComponent(""" & str & """.replace(/\+/g,"" ""))")
Set objScript = NOTHING
END FUNCTION
aa = "한글 썄헇 다횋뛣韓初めまして。婦妇廣→广Dedicăm talentul şi tehnologia noastră pentru a crea produse şi"
bb = Server.URLEncode(aa)
cc = URLDecode(bb)
Response.write aa &"<br>"
Response.write bb &"<br>"
Response.write cc &"<br>"
'기타 개발관련' 카테고리의 다른 글
COMODO Positive SSL vs Essential SSL (0) | 2016.01.27 |
---|---|
ssl인증서 포멧 변경하기 apache(.crt ) <-> IIS(.pfx) -> Tomcat(jks) (0) | 2015.12.18 |
hotmail로 메일 발신이 안될때 (0) | 2013.09.17 |
트위터 API1.1 트윗글 가져오기 - php 연동 (0) | 2013.07.03 |
짧은 URL주소로 변경 - bit.ly (0) | 2010.12.20 |