Log in automatically to a web-site C # Programmatically

1

The company I work for has 3 websites both with login and password

I would like to know something in C # .NET or Javascript that is from a redirect link.

1 Step: Access the Site 1 www.site.com.br
2 Step: Login Site 1
Step 3: Within Site 1 (SiteA SiteB SiteC) by clicking on any one redirect login - and do not need to log in again.

The goal is to center on 1 single site, and within it be the 3 sites.

I was able to do this in windows form following this video link

navigate("http://www.seusite.com.br/login.aspx");
webBrowser1.Document.GetElementById("login_login").InnerText = textBox1.Text.ToString();
webBrowser1.Document.GetElementById("login_pass").InnerText = textBox2.Text.ToString();
webBrowser1.Document.GetElementById("login_sent").InvokeMember("click");

But on the Web I did not find much help.

    
asked by anonymous 02.04.2015 / 21:37

0 answers