很久以前,我正在外部公司维护一个用VB Script编写的经典ASP应用程序.
我有一系列的图像文件路径,像这样:
dim banners,arrKeys,i set banners=CreateObject("Scripting.Dictionary") banners.Add "banner1.jpg","http://www.somelink.com" banners.Add "banner2.jpg","http://www.somelink.com" banners.Add "banner3.jpg","http://www.somelink.com"
这只会在具有横幅广告的网页上存在.有一些标准代码可以在包含文件(通用于所有页面)中遍历此列表.
If Not banners Is Nothing then ' then loop through the Dictionary and make a list of image links End if
问题是如果横幅没有在页面上实例化(不在所有页面上),我得到一个无法找到对象错误
检查VB脚本中是否存在对象的正确方法是什么?