ユーザー名とパスワードを使用して外部のWebサイトを開こうとしています。正しいクレデンシャルを持っていますが、次のコードを試してみると、「ログオンに失敗しました:不明なユーザー名または不正なパスワード」エラーが発生します。
Dim username As String = "username"
Dim password As New System.Security.SecureString
'Set value for SecureString type variable
Dim plainPassword As String = "pass"
For Each c As String In plainPassword.ToCharArray
password.AppendChar(c)
Next c
Dim IEprocess As System.Diagnostics.Process = New System.Diagnostics.Process
IEprocess.StartInfo.FileName = "http://www.website.com/"
IEprocess.StartInfo.UserName = username
IEprocess.StartInfo.Password = password
IEprocess.StartInfo.UseShellExecute = False
IEprocess.Start()
助言がありますか?