I am getting the message
"Object doesn't support this property or method:'GetAdvertisement'
when i using the code
Set AdRotator= Server.CreateObject("MSWC.AdRotator")
Thanks
Printable View
I am getting the message
"Object doesn't support this property or method:'GetAdvertisement'
when i using the code
Set AdRotator= Server.CreateObject("MSWC.AdRotator")
Thanks
This would be easier to look at if you could provide the rest of the code.
Set AdRotator= Server.CreateObject("MSWC.AdRotator")
AdRotator.GetAdvertisement ("emp_data/adrot.txt")
Is the only other statement where the adrot.txt is the Rotator Schedule file.
Please let me know
Thanks
Try this
Code:Set AdRotator= Server.CreateObject("MSWC.AdRotator")
response.write (AdRotator.GetAdvertisement ("emp_data/adrot.txt") )
Thanks a lot andreys. It worked.
Could you please explain why i had the problem
beat me to it Andreys!