Well I have managed to get the captcha to appear on my GUI now and added various text boxes and labels yada yada yada. But would this actually send to the account creation page?
Code:
private void textBox2_TextChanged(object sender, EventArgs e)
{
WebRequest request = WebRequest.Create("https://account.91.com/common/signup.aspx?flag=co&url=http://co.91.com");
using (WebResponse response = request.GetResponse())
{
request.Method = "POST";
request.ContentType = "application/x-www-from-urlencoded";
// encode the data to POST:
string postData = "";
byte[] encodedData = new ASCIIEncoding().GetBytes(postData);
}
}
Code:
private void button2_Click(object sender, EventArgs e)
{
}






