使用用户数据登录网站后,我试图获取html源,但是它没有给我新页面的html源。给了我登录页面htmlsource。那么源代码中的问题出在哪里呢?在网站上,登录“ lobby.ogame.gameforge.com/?language=tr”后,它将我重定向到服务器选择页面;我正在尝试获取此页面的html源。
这是我的代码;
public void button1_Click(object sender, EventArgs e)
{
string URI = "https://tr.ogame.gameforge.com/";
string myParameters = "login=testusername&pass=testpassword";
using (WebClient wc = new WebClient())
{
wc.Headers[HttpRequestHeader.ContentType] = "application/x-www-form-urlencoded";
string HtmlResult = wc.UploadString(URI, myParameters);
richTextBox1.Text = HtmlResult;
}
}