ASP AdRotator
ASP AdRotator 구성 요소
사용자가 웹 사이트에 들어가거나 페이지를 새로 고칠 때마다 ASP AdRotator 구성 요소는 AdRotator 개체를 생성하여 다른 이미지를 표시합니다. 이미지에 대한 정보는 텍스트 파일에 포함되어 있습니다.
참고: AdRotator는 IIS7(Internet Information Server 7)에서 작동하지 않습니다.
Syntax
<%
set adrotator=server.createobject("MSWC.AdRotator")
adrotator.GetAdvertisement("textfile.txt")
%>
set adrotator=server.createobject("MSWC.AdRotator")
adrotator.GetAdvertisement("textfile.txt")
%>
ASP AdRotator 인스턴스
다음과 같은 "ads.txt"라는 파일이 있습니다.
REDIRECT 배너s.asp
*
w3s.gif
http://www.w3cschool.cc
W3CSchool의 무료 튜토리얼
50
xmlspy.gif
http://www.altova.com
Altova의 XML 편집기
50
*
w3s.gif
http://www.w3cschool.cc
W3CSchool의 무료 튜토리얼
50
xmlspy.gif
http://www.altova.com
Altova의 XML 편집기
50
위 텍스트 파일에서 모델 아래 줄은 표시할 이미지 이름, 하이퍼링크 주소, 이미지의 대체 텍스트 및 클릭이 발생할 확률.
위 텍스트 파일의 첫 번째 줄은 방문자가 이미지를 클릭할 때 수행할 작업을 지정합니다. 리디렉션 페이지(banners.asp)는 리디렉션 URL이 포함된 쿼리 문자열을 수신합니다.
팁: 이미지의 높이, 너비 및 테두리를 지정하려면 REDIRECT 아래에 다음 코드를 삽입할 수 있습니다:
REDIRECT 배너s.asp
WIDTH 468
HEIGHT 60
BORDER 0
*
w3s.gif
..
WIDTH 468
HEIGHT 60
BORDER 0
*
w3s.gif
..
"banners.asp" 파일은 다음과 같습니다.
Instance
<% url=Request.QueryString("url") If url<>"" then Response.Redirect(url) %> <!DOCTYPE html> <html> <body> <% set adrotator=Server.CreateObject("MSWC.AdRotator") response.write(adrotator.GetAdvertisement("textfile.txt")) %> </body> </html>
Run Instance»
온라인 인스턴스를 보려면 "Run Instance" 버튼을 클릭하세요
좋아요, 그게 전부입니다. .
ASP AdRotator 속성
속성 | 설명 | Instance |
---|---|---|
Border | 광고 주변 테두리의 크기를 지정합니다. | <% set adrot=Server.CreateObject("MSWC.AdRotator") adrot.Border="2" Response.Write(adrot.GetAdvertisement("ads.txt")) %> |
Clickable | 광고 자체가 하이퍼링크인지 지정합니다. | <% set adrot=Server.CreateObject("MSWC.AdRotator") adrot.Clickable=false Response.Write(adrot.GetAdvertisement("ads.txt")) %> |
TargetFrame | 광고를 표시할 프레임 이름입니다. | <% set adrot=Server.CreateObject("MSWC.AdRotator") adrot.TargetFrame="target='_blank'" Response.Write(adrot.GetAdvertisement("ads.txt")) %> ; |
ASP AdRotator Method
Method | Description | Instance |
---|---|---|
GetAdvertisement | 페이지에 광고를 표시하기 위한 HTML을 반환합니다. | <% set adrot=Server.CreateObject("MSWC.AdRotator") Response.Write(adrot.GetAdvertisement("ads.txt")) %> |