0

I'm trying to test an application with Bing Ads. I've added the latest version of the Microsoft Advertising SDK and i'm trying this in a Windows Phone 8 Silverlight App?

This is the xaml code:

   <UI:AdControl ApplicationId="app_id" AdUnitId="adunit_id"
                HorizontalAlignment="Left" Height="80" 
                Margin="0,488,0,200"   Width="480" 
                IsAutoRefreshEnabled="True" Keywords="Hotels, Travels, Restaurant"/>

But the ad is not getting appeared in the device?

Thanks in advance.

Kulasangar
  • 9,046
  • 5
  • 51
  • 82
  • For all we know your control is sitting beneath a canvas with a non-opaque background... –  Jun 23 '14 at 14:54

2 Answers2

0

You must Have forgot to add capabilities

The following ID_CAP capabilities must be included in the manifest of the advertising-enabled app.

ID_CAP_IDENTITY_USER
ID_CAP_MEDIALIB_PHOTO
ID_CAP_NETWORKING
ID_CAP_PHONEDIALER
ID_CAP_WEBBROWSERCOMPONENT
Amit Bhatiya
  • 2,621
  • 1
  • 12
  • 20
0

try to check internet connection in your device then set the Visible property ,Enable property

   <UI:AdControl ApplicationId="app_id" AdUnitId="adunit_id"
                HorizontalAlignment="Left" Height="80" 
                Margin="0,488,0,200"   Width="480" 
                IsAutoRefreshEnabled="True" Visible="visible" IsEnable="True" Keywords="Hotels, Travels, Restaurant"/> 
Mohammad Diab
  • 258
  • 3
  • 13