본문 바로가기
반응형

Developer/asp25

aspjson read.. Set oJSON = New aspJSON'Load JSON stringoJSON.loadJSON(jsonstring)'Get single valueResponse.Write oJSON.data("firstName") & ""'Loop through collectionFor Each phonenr In oJSON.data("phoneNumber")    Set this = oJSON.data("phoneNumber").item(phonenr)    Response.Write _    this.item("type") & ": " & _    this.item("number") & ""Next'Update/Add valueoJSON.data("firstName") = "James"'Return json st.. 2016. 5. 23.
asp User Function '' ---*tm_value =replace(str,"'","''")case "br_html"tm_value=replace(str,"&","&")tm_value=replace(str,"",">")tm_value=replace(str," "," ")tm_value = replace(str,chr(10)," ")end selectend ifset_replace = tm_valueend function '# -----------------------------------------------------------------------------------------------'# 날짜형식 변환'# ---------------------------------------------------------------.. 2016. 2. 1.
xls 파일 읽어오기 'initialize variablesDim objConn, strSQLDim x Set objConn = Server.CreateObject("ADODB.Connection")objConn.Open "DRIVER={Microsoft Excel Driver (*.xls)}; IMEX=1; HDR=NO; "&_ "Excel 8.0; DBQ=" & Server.MapPath("filename.xls") & "; "strSQL = "SELECT * FROM A1:G1000" Response.Write("")Response.Write("")'write all columnNamesFor x=0 To objRS.Fields.Count-1 Response.Write("" & objRS.Fields(x).Name & .. 2015. 6. 15.
asp header 추가하기,Access-Control-Allow-Origin: * / 크로스도메인 / 브라우저 보안 ajax로 로딩하는 중에 보안경고가 뜨면서 호출이 안돼는 경우가 있다 가끔 그런 경우에 allow 하는 헤더 값을 Response.AddHeader "Content-type", "text/xml" Response.AddHeader "Access-Control-Allow-Origin: *" 이런 식으로 넣어주면 된다. 로 알고있었으나 ... Call Response.AddHeader("Access-Control-Allow-Origin", "*") 위와 같이 해야 제대로 되었다 ..음.. . 2015. 4. 2.
반응형