2011-11-28 71 views

回答

0

This page on the MSDN涵盖这些问题:

<HyperlinkButton NavigateUri="/Home" TargetName="ContentFrame" Content="home"/> 

和:

if (this.NavigationContext.QueryString.ContainsKey("ProductId")) 
{ 
    productID = this.NavigationContext.QueryString["ProductId"]; 
} 

我建议你使用UriMapper,这使得大量的处理变得更加容易。

相关问题