views:

870

answers:

2

Let us suppose we have a site entirely written on Silverlight. All navigation occurs inside the SL application and data comes from services.

I want to add advertisement in the app that will change on each navigation in the app (ultimately the ad should be relevant to the current content).

So how to add advertisement to such kind of web applications?

Am I right that there are two major problems to do this?

  1. Render html advertisement in silverlight.
  2. Support relevance (in case of relevant ads like Google AdSense).

AFAIK, there are silverlight controls solving the first point.

I will appreciate any ideas. Thank you.

+1  A: 

I would segment part of the page to use for ads like this or you can used a native Silverlight ad rotator like this.

Michael S. Scherotter
Thank you! How can I integrate Silverlight Ad Rotator with Google AdSense or Microsoft Advertising or so?
Alexander K.
You can't at this time - because those two solutions are self-contained solutions. If you manage your own advertiser relationships, then you can use the Silverlight ad rotator that I built.
Michael S. Scherotter
+1  A: 

Here is an example of overlaying HTML over your Silverlight app using Visual WebGUI:

How to embed HTML inside a Visual WebGui Silverlight application

eriksmith200