I´m trying to read
http://200.68.94.241/log.aspx?ReturnUrl=/cons.aspx?tipo=22&tipo=22
see image
This is the source code of the page where it ask for user and pass
<input name="txus" type="text" id="txus" class="txt" style="width:150px;" />
<input name="txpa" type="password" id="txpa" class="txt" style="width:150px;" />
I´m using a Webview control and:
Sub WebView1_UserAndPasswordRequired (Host As String, Realm As String) As String()
Return Array As String("1205", "partagas#1205")
End Sub
But it does not work
How can I do it?
PD I´m trying to see it just to test but I need to parse it once readed.
Thanks
http://200.68.94.241/log.aspx?ReturnUrl=/cons.aspx?tipo=22&tipo=22
see image
This is the source code of the page where it ask for user and pass
<input name="txus" type="text" id="txus" class="txt" style="width:150px;" />
<input name="txpa" type="password" id="txpa" class="txt" style="width:150px;" />
I´m using a Webview control and:
Sub WebView1_UserAndPasswordRequired (Host As String, Realm As String) As String()
Return Array As String("1205", "partagas#1205")
End Sub
But it does not work
How can I do it?
PD I´m trying to see it just to test but I need to parse it once readed.
Thanks