반응형

 

 

support.dextsolution.com/techdoc/view.aspx?tagno=0&order=1&kb_id=KB000012

 

DEXTSolution : Technical Support for DEXT Products

▼ 기술문서 온라인 기술문의 이전에 기존에 등록된 기술문서 검색 서비스로 답변을 기다릴 필요없이 해결방법을 참고하실 수 있습니다. 기술문서 목록 최근 등록된 기술문서 자주 검색되는 기

support.dextsolution.com

기술문서 IDHowTo에러코드태그작성일문제해결

KB000012
"configuration/dextuploadpro/common section not exist." 오류
 
DEXTUpload Pro
2020-06-30
DEXTUpload Pro v4.0.0.0이상 설치 시 해당 오류가 발생될 수 있습니다.
v4.0.0.0 이상 버전 설치 후 제품 기능을 사용하시려면 web.config에 인증키를
포함한 제품관련 설정을 적용하셔야 합니다.

설치경로에서 아래의 매뉴얼 내용을 먼저 참고하시기 바랍니다.

*매뉴얼 - C:\Program Files (x86)\DEVPIA\DEXTUpload Professional\Manual\index.html
            ->프로그래밍->인증키 발급, 인증키 설정

샘플 경로에는 인증키를 제외한 설정이 적용된 web.config가 포함되어있습니다.
(C:\Program Files (x86)\DEVPIA\DEXTUpload Professional\Samples)

제품과 관련된 설정(인증키 포함)은 처리 페이지(asp)에서 재정의 할 수 있지만
설정항목은 반드시 web.config에 기본적으로 선언되어있어야 합니다.
(재정의 할 경우 web.config 설정항목은 값이 입력되지 않아도 무관합니다.)
반응형
반응형

[ASP] 랜덤으로 출력되는 , 랜덤문자조합

 

<%

 Function random_str()
  Dim str, strlen, r, i, ds, serialCode '사용되는 변수를 선언


  str = "efghiFGH3456789abcVWXYZ012opADstdqrjklmnIJKLMNOPUuvBCwxyzQRST" '랜덤으로 사용될 문자 또는 숫자


   strlen = 12 '랜덤으로 출력될 값의 자릿수 ex)해당 구문에서 10자리의 랜덤 값 출력

 

   Randomize '랜덤 초기화
   For i = 1 To strlen '위에 선언된 strlen만큼 랜덤 코드 생성
    r = Int((62 - 1 + 1) * Rnd + 1)  ' 36은 str의 문자갯수

    serialCode = serialCode + Mid(str,r,1)

   Next
   random_str = serialCode
 End Function

 

 Response.Write  random_str()

%>
반응형
반응형

ASP.NET Core Developer Roadmap

https://github.com/MoienTajik/AspNetCore-Developer-Roadmap

 

MoienTajik/AspNetCore-Developer-Roadmap

Roadmap to becoming an ASP.NET Core developer in 2019 - MoienTajik/AspNetCore-Developer-Roadmap

github.com

반응형
반응형

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 (월)

반응형

+ Recent posts