I am trying to enter the vbulletin forum. I got to this:
private string login(string url, string username, string password) { string values = "vb_login_username={0}&vb_login_password={1}" values += "&securitytoken=guest&cookieuser=checked&do=login"; values = string.Format(values, username, password); HttpWebRequest req = (HttpWebRequest)WebRequest.Create(url); CookieContainer a = new CookieContainer(); req.CookieContainer = a; System.Net.ServicePointManager.Expect100Continue = false;
I seem to be logged in, but when I load the page, I cannot find my name in it.
Do you guys see anything that I can do wrong?
Thanks in advance!
c # forum vbulletin
Yustme
source share