adrotator

Is there more I can do with ASP:AdRotator NavigateUrl than just a standard link?

I currently have a simple implementation of an AdRotator: <asp:AdRotator ID="EHR_Banner" target="_blank" AdvertisementFile="img/banners/ads/ehr.xml" Runat="server" CssClass="adRotator" OnAdCreated="AdCreated_Event" /> On the site that it resides I have a third-party 'pop-up' window script, GreyBox. I use it to disp...

Simple testimonial rotator

I'd like to show a simple testimonial rotator on my site done in php. Php can take testimonials from either a Text file or db, but I don't understand how to create te rotator part. I'd appreciate any help you can offer. Thanks. ...

Looking for something similar to AdRotator in .NET

Hi, I'm working on a website that has a rotation of testimonials. I need something that is similar to the AdRotator class in .NET. However instead of rotating images I'd like to rotate text blocks which are formated with HTML/CSS. The source can be an XML file just like the ad rotator but I need three elements. Quote Author Name Author...

Ad Rotator with Ad Scripts

I've used ASP:AdRotator in the past, but only for an image and a link per ad. Simple enough: it chooses a random (weighted) ad, and spits out it's image, alt text and link. But what if the ad is a script? Is there an easy way to tell it to rotate through scripts AND images? For example: <script type='text/javascript'><!-- google_ad_cli...

javascript ads / iframe ads in an asp:adrotator

Is this supported at all or do I need to build a custom control? End goal is an XML file of javascript ads that the adrotator picks from. <script type="text/javascript"><!-- google_ad_client = "pub-xxxxxxxxxxxxxxxxxxx"; google_ad_slot = "xxxxxxxxxx"; ...

Suggestions regarding the .NET tool to use for project

Hi, I need to develop a project that needs to have a Ticker and an AdRotator, apart from some button controls and a banner. I have two options - ASP.NET and Windows Forms. With Windows Forms, I've been able to develop the Ticker, but I don't know how to develop the AdRotator. With ASP.NET, I'll have to develop Ticker using AJAX, where...

Ad Rotator - to download templates.

Hi, I have a page from which user can download import templates. The proposed design is...three out of nine templates will be displayed to the user at a time... and user can click next/previous arrows to move to next/previous templates. And when the user click on one template, that particular template should get downloaded. Can I use...

Why will my AdRotator not display images? (Image paths are correct)

Hi. I'm writing a simple web application in C# and I've gotten to the part where I must add an AdRotator object and link four images to it. I have done this, but no matter what I do the images will not show up; only the alternate text. It makes no sense because the paths are correct. Supposedly AdRotator controls are really simple to use...

ASP.NET Adrotator Control Repeating For Length of Entire Page

Hello! I'm making a website that requires ads being repeated down the length of a page with dynamic length. I want the ads to be displayed down the entire length of the page, but I won't know that length until after the data has been displayed. Is there built in functionality for this in .NET? If not, does anyone see any workarounds I c...

Bind database image to the ad rotator control

Hi, I am using asp.net 2.0 and C#. I have a adrotator control, whcih I am binding to the database which has the three fields. AlternateText, ImageUrl and NavigateUrl. Now, this works fine, as per the expectation. My question is this that the ImageUrl in the table contains a URL like http://www.xyz.com/abc.jpg but I want to store imag...

Showing data with adrotator control

Hi Experts, I am using asp.net with C#. I have a adrotator which I am binding through the database. I have following column in database table AdId AdTitle AlternateText ImageUrl NavigateUrl AdDescription It is binding correctly and showing the data, now I want a label on the right of the adrotator which show the AdDescription, but...

AdRotator Question...

I have the following code in a testpage.aspx file: <asp:Timer ID="Timer1" runat="server" Interval="10000"></asp:Timer> <asp:UpdatePanel ID="UpdatePanel1" runat="server" UpdateMode="Conditional"> <Triggers> <asp:AsyncPostBackTrigger ControlID="Timer1" EventName="Tick" /> </Triggers> <ContentTemplate> <asp:AdRo...

ASP.NET AdRotator AdvertisementFile xml file from outside the application

Hello, I have an ASP.NET web site, let's call it MySite, and at the same level as the web site, a virtual folder - Data. And in that folder I have the xml file needed in an AdRotator control. I put "http://localhost/Data/Ads.xml" in AdvertisementFile and I get this error: 'http://localhost/Data/Ads.xml' is not a valid virtual path. I...

How to use the AdRotator to rotate through a list of links?

I was wondering, wether it is possible to use the Asp.net AdRotator to rotate through a List of links. This would be my business class. public class AdRotatorData { public String Name {get;set;} public String NavigateURL {get;set;} public String Description {get;set;} } I would like to bind a List to the AdRotator control and m...