My page has a set of fixed Hyperlink Buttons. The NavigateUri of these will change depending on the feature selected by the user. I am making the assignment like this: MessageBox.Show(feature.Attributes["Demographics Data"] as String);
DemographicLink.NavigateUri = feature.Attributes["Demographics Data"] as Uri;
The messagebox shows that the URL is proper and the code runs without error. However when I click the hyperlink, nothing happens. The hyperlink is defined like this:<HyperlinkButton x:Name="DemographicLink" NavigateUri="" TargetName="Contentframe" Content="Demographic Data" Foreground="DarkSlateBlue"/>
Can someone suggest what I have wrong?Thanks