我按照书上的例子运行AdRotator组件的一个实例,结果一直运行不成功。提示“HTTP 错误 500.19 - Internal Server Error”.我把代码贴出来,请大神帮忙诊断一下问题所在,不胜感激。
Ad.asp:
1 < %@Language=Jscript%> 2 < html> 3 < body> 4 < % 5 var MyAdvertise=Server.CreateObject("MSWC.AdRotator") 6 %> 7 < center><%=MyAdvertise.GetAdvertisement("Ad.txt")%></center> 8 < /body> 9 < /html>
Ad.txt:
REDIRECT AdRedir.asp
WIDTH 226
HEIGHT 62
BORDER 0
*
163.gif
http://www.163.com
网易网
50
sina.gif
http://www.sina.com.cn
新浪网
30
sohu.gif
http://www.sohu.com
搜狐网
20
AdRedir.asp
1 < %@Language=Jscript%> 2 < % 3 Response.Redirect(Request("url")); 4 %>