I want to open the Internet explorer on the yahoo mail account depending on the username and password were entered by the user into textboxes and when click on a button the internet explorer will open on the user account after this page had opened the user can access his account such as sending messages and open inbox messages to read the messages. in another word i want to make user login to his mail through windows application.
my code:
private void button1_Click(object sender, EventArgs e)
{
string id = textBox1.Text;
string pass = textBox2.Text;
login(id,pass)
}
private void login(x,y)
{
}
please tell me what is the appropriate code that should be put in the function login(x,y) to work as i want.