Log into 3rd party website automatically.

  • Thread starter Thread starter bnlockwood
  • Start date Start date
B

bnlockwood

I'm researching ways in which I can create an ASPX page that will log
into some of the major realtor websites with usernames and passwords
and submit new listings rather then logging into each one manually...
Does anyone have any experience with logging into another website
within your own? Any help is appreciated.

Kind regards,
 
Well,
they are all somewhat different, but assuming each has a "login" form, you
would need to get the form elements (view source), get the POST destination,
and use either HttpWebRequest or the WebClient (Simplified) class to post the
login fields. Probably you would also need to capture the cookie that tells
each site that you are logged in, and be prepared to add that cookie to any
subsequent requests.
Peter
 
Back
Top