반응형
반응형

JSP 에서 ASP의 response.end 처럼 하기.

 

stackoverflow 에 여러개 있긴 한데. https://stackoverflow.com/questions/570929/response-end-in-java-jsp

 

Response.End() in Java/JSP

In .net you have the ability to Response.End() in any context you want. Is there similar functionality in Java/JSP? Thanks, Sam

stackoverflow.com

if ( true ) return;   라고 하면 이 아래는 실행이 안됨. 

 

 

...

반응형

'프로그래밍 > JAVA' 카테고리의 다른 글

주석, JSP, JAVA  (0) 2019.04.23
JSTL, Format Tag의 이해  (0) 2019.04.23
java, Eclipse 사용시 탭을 공백문자로 바꾸기. tab-to-space  (0) 2019.04.22
JSTL의 이해 및 활용  (0) 2019.04.22
JSP, JSTL Core Tag의 종류  (0) 2019.04.22
반응형
[Atom] Atom 에디터에서 asp, vbscript 사용하기

 

.

 

 

반응형
반응형

[ASP] Tabs.mailer 로 메일 보내기

       || http://tsdn.tabslab.com/ko/tabsmailer/4.5/html/0fa3b87b-3963-42bd-9659-55ae8dce67a9.htm

 

SetTrace에 캠페인과 트레이스 URL을 지정하면 수신 확인이 자동으로 처리됩니다.

 

 

 

 

 

 

 

 

 .

반응형
반응형

asp - JSON  : http://www.aspjson.com/

 

ASPJSON is a free to use project for generating and reading JSON data into a classic ASP object.

The class can be used for reading a string of JSON data as well as writing JSON output from an AJAX file.
Below are 2 simple examples of both.

 

<!--#include virtual="/aspJSON1.17.asp" -->
<%
Set oJSON = New aspJSON

'Load JSON string
oJSON.loadJSON(jsonstring)

'Get single value
Response.Write oJSON.data("firstName") & "<br>"

'Loop through collection
For Each phonenr In oJSON.data("phoneNumber")
    Set this = oJSON.data("phoneNumber").item(phonenr)
    Response.Write _
    this.item("type") & ": " & _
    this.item("number") & "<br>"
Next

'Update/Add value
oJSON.data("firstName") = "James"

'Return json string
Response.Write oJSON.JSONoutput()
%>

 

 

[INPUT]
{ "firstName": "John", "lastName" : "Smith", "age" : 25, "address" : { "streetAddress": "21 2nd Street", "city" : "New York", "state" : "NY", "postalCode" : "10021" }, "phoneNumber": [ { "type" : "home", "number": "212 555-1234" }, { "type" : "fax", "number": "646 555-4567" } ] }

 

 

 

 

 

반응형
반응형

ASP 날짜, 시간 - date(), Now(), time()

 

    now_a = Now()
    now_b = Left(Now(), 10)
    now_c = Mid(Date(),1,4) & Mid(Date(),6,2) & Mid(Date(),9,2) & left(FormatDateTime(Now(), 4),2)

                right(FormatDateTime(Now(), 4),2) & right(FormatDateTime(Now(), 3),2)


    response.write " now_a = "& now_a
    response.write " now_b = "& now_b
    response.write "<br> now_c = "& now_c

 

 

Now() ==> 2009-07-09 오후 4:48:49
Date() ==> 2009-07-09
Time() ==> 오후 4:48:49

FormatDateTime(Now(), 0) ==> 2009-07-09 오후 4:48:49
FormatDateTime(Now(), 1) ==> 2009년 7월 9일 목요일
FormatDateTime(Now(), 2) ==> 2009-07-09
FormatDateTime(Now(), 3) ==> 오후 4:48:49
FormatDateTime(Now(), 4) ==> 16:48

 

* YYYY-MM-DD HH24:MI:SS (오라클 기준)
FormatDateTime(Now(), 2) ==> 2009-07-09
FormatDateTime(Now(), 4) ==> 16:48
Right(Now(), 3) ==> :49
====> 2009-07-09 16:48:49

 

Left(Date(), 4) ==> 2009 (년)
Mid(Date(), 6, 2) ==> 07 (월)
Int(Mid(Date(), 6, 2)) ==> 7 (월)

반응형
반응형

ASP 인코딩


* 페이지 속성을 정의


 <%@ codepage="65001" language="VBSCRIPT" %>

 

 0 - ANSI(default)
 949 - 한국어(EUC-KR)
 65001 - 유니코드(UTF-8)
 65535 - 유니코드(UTF-16)

 

* 메타태그 설정

    <meta http-equiv="Content-Type" content="text/html; charset=utf-8" >

 

* 현재 세션사용자의 동적 텍스트 인코딩 코드 설정

 

    Session.CodePage = 65001
    Session.CodePage = 949

 

* ASP의 response.charset을 이용해서 문자코드 세트명 지정

 

    Response.Charset = "EUC=KR"

 

 

* UTF-8 인데 계속 한글이 깨지면 아래와 같이 다 적용해보자.

 

<%@Language="VBScript" CODEPAGE="65001" %>
<%
    Session.CodePage = 65001

    Response.CharSet = "UTF-8"
   

 

 

<%@  codepage="949" language="VBScript" %><% 
'session.codepage = 65001  ' codepage="949" language 
Session.CodePage = 949 
'Response.expires=-1 
Response.ContentType = "application/json" 
Response.Charset = "euc-kr" 
'Response.Charset = "utf-8" 

 

 

 

* utf-8로 만들기 : 페이지 최상단에 입력

<%@LANGUAGE="VBSCRIPT" CODEPAGE="65001"%>
<%
Response.AddHeader "Cache-Control", "no-cache"
Response.AddHeader "Expires", "0"
Response.AddHeader "Pragma", "no-cache"
Response.ContentType = "text/html; charset=utf-8"
%

 

 

 

 

 

반응형

+ Recent posts