在 Silverlight 5 中:
var uri= new Uri("http://www.last.fm/api/auth/?api_key=xyz&cb=http://localhost:19000/callback?bla=blu")
HtmlPage.Window.Navigate(uri);
登陆我的浏览器: http ://www.last.fm/api/auth?api_key=xyz&cb=http://localhost:19000/callback%253Fbla=blu
注意“?” 回调参数中的 URL 被转义为 %253F - 即使我在调试器中查看 uri.ToString() ,它也没有被转义。
我怎样才能防止这种情况发生?
非常感谢,马克斯