ASP打造出網站彈出廣告

來源:互聯網
上載者:User
廣告|網站 本文教您用ASP在5分鐘內打造出網站彈出廣告
這裡我們只給出核心代碼,顯示和後台添加是相當簡單的,您完全可以自己搞定。
首先你將以下代碼插入到網站首頁面的代碼中
<%'彈出廣告設定--code by ceocio
sql = "select top 2 width,height,id from pop where useit=1 order by id"
set rs=conn.execute(sql)
if not rs.eof and not rs.bof then
do while not rs.eof
id=rs("id")
width=rs("width")
height=rs("height")
windownum=windownum+1
%>
<SCRIPT LANGUAGE="javascript">
var windownum=<%=windownum%>
var id=<%=id%>;
var height=<%=height%>
var width=<%=width%>
//<!--
window.open ('pop.asp?id='+id, 'newwindow'+windownum,

'height='+height+',width='+width+',top=0,left=0,toolbar=no,menubar=no,scrollbar

s=yes,resizable=no,location=no,status=no')
//-->
</SCRIPT>
<%
rs.movenext
loop
rs.close
end if %>
本例只設定了最多啟用兩個廣告的情況,根據需要你可以設定更多,不過多了也不好,速度慢。
建立一個資料庫,建表:pop
pop表欄位內容如下:
id 自動編號
width 快顯視窗寬度 數字型
height 快顯視窗高度 數字型
content 內容 備忘型
useit 是否啟用,是/否型
在pop.asp中接收到傳遞過來的參數開啟相應的記錄顯示出來就可以了。
ok,至此,您的彈出廣告系統完成了。是不是很簡單?



相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.