Call OpenConn_mall(conn)
Call OpenConn_ora(oraConn)
Call은 Sub, Function 을 호출 할 때 사용합니다.
w3schools 에서 의미를 찾아보면,
-> ASP 내 자바스크립트를 호출 할 수 있다.
<!DOCTYPE html>
<html><head>
<%
sub vbproc(num1,num2)
response.write(num1*num2)
end sub
%>
</head>
<body>
<p>Result: <%call vbproc(3,4)%></p>
</body>
</html>
attend_write.asp
Call OpenConn_mall(conn)
dbconn_mall.asp
Sub OpenConn_mall(conn)
Set conn = Server.CreateObject("ADODB.Connection")
conn.open("xxxxxxxxxxxxx");
End Sub
'2019년 이전 정리 > ASP.NET & C#' 카테고리의 다른 글
DLL 이란/ 레지스트리란/ 등록된 DLL 목록 보기 (0) | 2014.02.26 |
---|---|
[ASP] instr 문자열 찾기 (0) | 2014.02.18 |
[ASP] With End With 문법 (0) | 2014.02.10 |
[ASP] 기본문법 (DIM, SET 등) (0) | 2014.02.10 |
[ASP.NET] MVC 장점 (0) | 2014.02.03 |