在Microsoft Pubcenter中切换广告

时间:2012-11-27 21:26:35

标签: c# windows-phone-7 xaml

我在每个Windows Phone页面上都有许多PubCenter广告。默认情况下,它们都被禁用。

我使用随机生成器和开关来选择一个打开。这适用于AdDuplex,但是当我使用Pubcenter时,我只会获得广告所在的空白区域。有谁知道我要做些什么来让这些广告开始工作?

2 个答案:

答案 0 :(得分:1)

各种原因可能导致隐藏PubCenter控件。

您可以做的最简单的事情是确定为什么要在页面的代码隐藏中订阅AdControlError事件,如下所示:

protected override void OnNavigatedTo(System.Windows.Navigation.NavigationEventArgs e)
{
    base.OnNavigatedTo(e);
    myAdControl.AdControlError += AdControlError;
}

private void AdControlError(object sender, ErrorEventArgs e)
{
    string error = e.ErrorDescription;
    MessageBox.Show(error);
}

答案 1 :(得分:0)

我假设您已经注册了pubcenter,并且正在设置AdControl.ApplicationId和AdControl.AdUnitId属性?如果你已经这样做了,那么一切都很好。

这些是您在设计/开发应用时的设置:

adControl1.ApplicationId = "test_client";
adControl1.AdUnitId = "Image480_80";