Hi there,
1. I for one am definitely not keen on nag screens of any description.
2. It is possible to have such as link. You can check the application certification requirements to see if there is anything specific restricting how this is done http://go.microsoft.com/?linkid=9730558
3. To implement you use the Microsoft.Phone.Tasks; namesplace and the MarketplaceReviewTask.
On your page:
<HyperlinkButton Content="Submit A Review" Height="30" HorizontalAlignment="Left" Margin="225,665,0,0" Name="btnSubmitReview" VerticalAlignment="Top" Width="200" Click="btnSubmitReview_Click" />
In your code behind:
add a using Microsoft.Phone.Tasks;
and add code to your handler as follows:
private void btnSubmitReview_Click(object sender, RoutedEventArgs e)
{
MarketplaceReviewTask review = new MarketplaceReviewTask();
review.Show();
}
Note:
1. running this in the emulator will display a warning/error dialog.
2. This task will cause your application to be tombstoned so you will need to add handing for that.
Kind Regards,
Nick Harris