반응형
function GetStatusTxt(obj)
Dim strResult : strResult = ""
if obj("price") > 0 and obj("status") = 1 then
strResult = "완료"
else
strResult = "미완료"
end if
GetStatusTxt = strResult
end function
set objResult = server.createobject("adodb.recordset")
dbQeury = "SELECT price, status FROM viewOrder"
objResult.open dbQeury,dbConn,1
if objResult.bof = true then
response.write "데이터가 없다"
else
do until objResult.eof
response.write GetStatusTxt(objResult) & "<br/>"
objResult.MoveNext
Loop
end if
objResult.Close
set objResult = nothing
728x90
'Programming > Classic ASP, ASP.NET' 카테고리의 다른 글
[IIS] iis 사용시 0x8007000d 오류 (0) | 2022.11.27 |
---|---|
[ASP] ABCUpload4 컴포넌트 등록하기. (0) | 2022.10.27 |
[ASP] 다이렉트센드 SMS 전송 함수 (0) | 2022.10.08 |
[ASP] image 직접 삽입하지 않고 image 출력하기 (0) | 2022.10.07 |
[ASP] ASP에서 YYMMDDHHMMSS 형식으로 출력하는 함수 (0) | 2022.10.06 |
댓글