登录到站点并下载文件

本文关键字:下载 文件 站点 登录 | 更新日期: 2023-09-27 17:57:09

我已经向一个站点植入了一个登录代码,之后我想从服务器下载一个文件。

    HttpWebRequest http = WebRequest.Create(@"http://www.website.com") as HttpWebRequest;
    //    http.Connection = "Keep-alive"; //uncertain
    http.Method = "POST";
    http.ContentType = "application/x-www-form-urlencoded";
    string postData = "FormNameForUserId=" + @"username" + "&FormNameForPassword=" + "pass";
    byte[] dataBytes = UTF8Encoding.UTF8.GetBytes(postData);
    http.ContentLength = dataBytes.Length;
    using (Stream postStream = http.GetRequestStream())
    {
        postStream.Write(dataBytes, 0, dataBytes.Length);
    }
    HttpWebResponse httpResponse = http.GetResponse() as HttpWebResponse;
    // Probably want to inspect the http.Headers here first
    http = WebRequest.Create(@"http://www.codeproject.com") as HttpWebRequest;
    http.CookieContainer = new CookieContainer();
    http.CookieContainer.Add(httpResponse.Cookies);
    HttpWebResponse httpResponse2 = http.GetResponse() as HttpWebResponse;

怎样才能知道我是否正确登录,还有登录后我应该怎么做才能下载文件?

登录到站点并下载文件

您有两个问题

  • 登录
  • 下载文件

你有没有谷歌过这个?

  • 登录
  • 下载文件 |下载文件 |下载文件

注意:您说您已经实现了登录页面...最简单的部分是在登录完成后设置一个会话变量,并为每个页面重新检查该变量。

这是旧方法,我们可以做更多的事情,但形成您的问题,请继续:

if( txtUsername.Text == "user" && txtPassword.Text == "pwd" ) { 
    // Login correct
    Session["Login-User"] = txtUsername.Text;
} 
else {
    // Login not correct, show error message and clear session
    Session["Login-User"] = "";
}

然后在任何页面中,在开头(最好放在Page_Init方法中)

If( Session["Login-user"] != null && Session["Login-user"].ToString().Length > 0 ) {
    // Login OK
}
else {
    // Login Not OK, redirect
    Response.Redirect("~/Login.aspx");
}

ASP.NET 官方网站了解更多信息