Auto Login to a URL that use POST for Username Pwd

  • Thread starter Thread starter mt
  • Start date Start date
M

mt

Is there any VB.NET sample code that can demo this featuers?
Or what function/controller can be used for this ?
I learned about others using MSHTML controller but the one I got did not
demo how to incorporate the passing up of Username Pwd to match the URL's
POST request.

Thanks in adv.
 
mt said:
Is there any VB.NET sample code that can demo this featuers?
Or what function/controller can be used for this ?
I learned about others using MSHTML controller but the one I got did
not demo how to incorporate the passing up of Username Pwd to match
the URL's POST request.

The standard HTTP web request will work fine. .NET has HTTP classes under
System.Net

But before you start, I suggest you look at documentation on how POST
works. Also hook up a packet sniffer (i.e. Ethereal or TCPTrace) and
capture some HTTP conversation data... this should help you greatly in
determining what sort of data to send.
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Back
Top