티스토리 뷰

보내는 페이지의 자바스크립트 값을 escape()

$.post('process.asp', { content: escape(_content) });


받는 페이지의 ASP 스크립트에서는

content = unescape( Request.Form("content") )


해주면 한글이 깨지지 않고 넘겨지고 받아진다.
댓글