Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

WP7 Link to Buy App/Reviews

I have seen in some applications they link directly to the Review page of their application. It also states here that developers should "Provide a way for users to buy your trial application before the end-of-trial."

Does anyone have any information how I can do either of these? I'm guessing it's just a link to the market place I can launch from my app.

like image 572
nullable Avatar asked Nov 22 '10 08:11

nullable


1 Answers

You answered yourself you just launch your app page in the marketplace.

If you don't know how to do that here's an example:

 MarketplaceDetailTask marketplaceDetailTask = new MarketplaceDetailTask();

 marketplaceDetailTask.ContentIdentifier = yourappidonthestore;
 marketplaceDetailTask.ContentType = MarketplaceContentType.Applications;

 marketplaceDetailTask.Show();
like image 133
csharpwinphonexaml Avatar answered Nov 21 '22 02:11

csharpwinphonexaml