仓酷云

 找回密码
 立即注册
搜索
热搜: 活动 交友 discuz
查看: 602|回复: 11
打印 上一主题 下一主题

[学习教程] ASP网页设计在ASP中利用Ad Rotator告白组件

[复制链接]
兰色精灵 该用户已被删除
跳转到指定楼层
楼主
发表于 2015-1-16 22:56:37 | 只看该作者 回帖奖励 |倒序浏览 |阅读模式

马上注册,结交更多好友,享用更多功能,让你轻松玩转社区。

您需要 登录 才可以下载或查看,没有帐号?立即注册

x
缺乏可以共同遵循的行业标准,ASP还处在发展初期,大家对它的理解不同,如产品和服务标准,收费标准等,不利于行业的健康发展。告白TherearethreepartstoconsiderwhenusingtheAdRotatorcomponent.

TheRotatorScheduleFile
TheinstantiationoftheAdRotatorobjectitselfwithinthewebpagewhereyouwantyourbannersrotated
TheRedirectionFile
First-TheRotatorScheduleFile
Thisisthemeatofthedifferentbannersandwheretheyaresentwhenthegraphicfilesareclicked.
Therearetwosections-
Thefirstsectionliststheparametersthatapplytoalladvertisementimagesintherotationschedule,
linebyline.
ThefirstlineisthenameoftheRedirectionFile.
Thesecondlineisthewidthofthegraphic
Thethirdlineistheheightofthegraphics
ThefourthLineistheborderaroundthegraphics-foraonepixelborder,youwouldput1,forno
border,putin0
Example:
redirectRedirect.asp
Width468
Height60
Border0
Thesecondsectionmustbeseparatedfromthefirstsection,onaseparateline,byanasterisk(*).This
sectioncontainsallthedataforeachofthegraphics.Foreachbanner/adgraphics,therearefourlines.
FirstLine-theurlofthegraphicitself(http://www.whatever.com/grphics/MyFirstBanner.gif)
SecondLine-theURLtowheretheviewerisredirectedwhenhe/sheclicksonthebanner.Thiscanbea
dash(-)ifthereisnopagetogoto(thoughIcouldntwonderwhyyouddothis,IMHO)
Thirdline-themou搜索引擎优化vertextthatwillappear
Fourthline-theweightofthegraphicbannerinrespecttotheothers.AccordingtoMicrosoft-
"Forexample,ifaRotatorSchedulefilecontainsthreeadswithimpressionssetto2,3,and5,thefirst
advertisementisdisplayed20percentofthetime,thesecond30percentofthetime,andthethird50
percentofthetime."

Oncethispageisfinished,youmustsaveitandnameit.Forthisexample,Ihavenamedmineadrot.txt.
ItdoesnthavetobeanASPorHTMLfile....noheadersareinvolved,justtheplaintext.



--------------------------------------------------------------------------------
Second-InstantiatetheobjectintheASPpage:
<%DimMyAd
SetMyAd=Server.CreateObject("MSWC.AdRotator")%>
<%=MyAd.GetAdvertisement("/adrot.txt")%>
YoucanputHTMLCentersaroundthissectionofcodetocenteritonthepage.



--------------------------------------------------------------------------------
Now,theresonelastpart-theRedirectionfile.Above,youwillnoticethat,inthisexample,Icalled
itRedirect.asp.Youcancallitanythingyouwant-itdoesntmatterwhatitscalled.
Onthatpageallyouneedisthefollowingcode:
<%Response.Redirect(Request.QueryString("url"))%>
Justremember,ifyouhavecreatedanewpagewithaprogramthatincludesalltheHTMLbasicmarkupand
youputthislineinthefile,youmustputthefollowinglineasthefirstlineofthefilesoitwill
work:

<%Response.Buffer=true%>

Andthatsit-thatsallittakestogettheAdRotatorComponentworking.
</p>ASP在国内异常流行,因为国内大多使用的是盗版的Windows和盗版的SQLServer,而ASP+COM+SQLServer实际上也是一种不错的搭配,其性能也不输于PHP+MYSQL,特别是Windows系统和SQLServer都有图形界面,比APACHE和MYSQL易于维护,因此对于不重视知识产权的国家来说也是一种不错的选择。
灵魂腐蚀 该用户已被删除
沙发
发表于 2015-1-20 06:17:28 | 只看该作者
封装性使得代码逻辑清晰,易于管理,并且应用到ASP.Net上就可以使业务逻辑和Html页面分离,这样无论页面原型如何改变,业务逻辑代码都不必做任何改动;继承性和多态性使得代码的可重用性大大提高。
精灵巫婆 该用户已被删除
板凳
发表于 2015-1-22 11:12:13 来自手机 | 只看该作者
Server:这个表示的服务器,操作服务器的一些东西使用这个,如Server.Mappath转换服务器路径,Server.CreateObject实例化一个组件
再现理想 该用户已被删除
地板
发表于 2015-1-25 16:07:46 | 只看该作者
下面简单介绍一下我学习ASP的方法,希望对想学习ASP的朋友有所帮助...
活着的死人 该用户已被删除
5#
发表于 2015-1-30 10:45:51 | 只看该作者
弱类型造成潜在的出错可能:尽管弱数据类型的编程语言使用起来回方便一些,但相对于它所造成的出错几率是远远得不偿失的。
6#
发表于 2015-1-30 22:18:20 | 只看该作者
从事这个行业,那么你可以学ASP语言,简单快速上手,熟练dreamweav排版,写asp代码,熟练photoshop处理图片,打好基础就行了
变相怪杰 该用户已被删除
7#
发表于 2015-2-1 19:47:54 | 只看该作者
Application:这个存储服务端的数据,如果不清除,会直到web应用程序结束才清除(例如重启站点)
老尸 该用户已被删除
8#
发表于 2015-2-7 14:37:16 | 只看该作者
如何学好ASP,以前也有人问过,把回答给你转过来看看能否对你有帮助:
兰色精灵 该用户已被删除
9#
 楼主| 发表于 2015-2-22 08:02:30 | 只看该作者
跟学别的语言一样,先掌握变量,流程控制语句(就是ifwhileselect)等,函数/过程,数组
蒙在股里 该用户已被删除
10#
发表于 2015-3-6 23:33:43 | 只看该作者
代码的可重用性差:由于是面向结构的编程方式,并且混合html,所以可能页面原型修改一点,整个程序都需要修改,更别提代码重用了。
admin 该用户已被删除
11#
发表于 2015-3-13 22:32:58 | 只看该作者
弱类型造成潜在的出错可能:尽管弱数据类型的编程语言使用起来回方便一些,但相对于它所造成的出错几率是远远得不偿失的。
小女巫 该用户已被删除
12#
发表于 2015-3-20 20:54:57 | 只看该作者
我想问如何掌握学习节奏(先学什么再学什么)最好详细点?
您需要登录后才可以回帖 登录 | 立即注册

本版积分规则

QQ|Archiver|手机版|仓酷云 鄂ICP备14007578号-2

GMT+8, 2024-11-10 21:59

Powered by Discuz! X3.2

© 2001-2013 Comsenz Inc.

快速回复 返回顶部 返回列表