テキストボックスにユーザーが入力した、&
または入力した文字列として特殊文字を渡そうとしています。#
次に、この文字列を次のページに渡します
NavigationService.Navigate(new Uri(String.Format("/Pages/EditNote.xaml?note={0}", strText), UriKind.Relative));
次に、EditNote.xaml
ページは note パラメータをチェックし、その値を取得します
protected override void OnNavigatedTo(NavigationEventArgs e)
{
base.OnNavigatedTo(e);
if (NavigationContext.QueryString.ContainsKey("note"))
{
noteText = NavigationContext.QueryString["note"];
}
}
問題は、noteText がなど&
の英数字以外の文字の場合、常に空になることです。#
私は何が欠けていますか?