1. IIS 기본 경로 확인

Untitled

Untitled

(C:\inetpub\wwwroot)

2. DB연동 페이지 생성

<html>
<body>
ASP Test Page!!
<%
 Set db = server.CreateObject("ADODB.Connection")
 db.open = "dsn=21tcu;uid=21tcu;pwd=21tcu;"

 if db.state=1 then
   response.write "데이터베이스 연결 성공"
 else
   response.write "데이터베이스 연결 실패"
 end if
 db.close
 Set db = nothing
%>
!!
</body>
</html>

(wwwroot 폴더에 test.asp 파일을 생성한다)

Untitled

3. 실행

Untitled