I want my program to login to my website, and then find info on it.
To get the web source im using:
MessageBox.Show(getPageSource("http://mmoxautomation.xtreemhost.com/Membership/login.php?amember_login=Test&amember_pass=t3st&login_attempt_id=1271548162"));
string getPageSource(string URL)
{
System.Net.WebClient webClient = new System.Net.WebClient();
string strSource = webClient.DownloadString(URL);
webClient.Dispose();
return strSource;
}
This crashes my program without any errors, it just closes.
After login I need it to check the website for: "Helios Gathering - Premium gather bot." but I havent been able to even try to code this as the first bit doesn't work..
Please help.

New Topic/Question
Reply




MultiQuote




|