我们有 MVVM Silverlight 应用程序。我正在尝试从客户端视图模型上发生的按钮单击事件打开 Web url,并且通过调用方法需要在新浏览器中打开 Web url。
我正在使用如下服务器端代码中描述的 Process.Start 方法。
var URL = @"http://SiteSelect.aspx";
SecureString secure = new SecureString();
char[] passwordChars = Properties.Settings.Default.Password.ToCharArray();
//converting string to securestring...found from internet
foreach (char c in passwordChars)
{
secure.AppendChar(c);
}
Process.Start(URL,"",Properties.Settings.Default.User,secure,"agent");
这会引发与用户名和密码相关的错误。我检查了用户名和密码是否正确。任何人都有解决方案或我可以使用的任何其他方法?
谢谢,