所以我觉得是时候学习C#了,对我们来说很容易,我对此很新。
我正在尝试创建一个非常简单的应用程序(我使用的是Windows Forms Application)。我的目标是:
到目前为止,这是我的代码:
private void button2_Click(object sender, EventArgs e)
{
string URI = "http://localhost/post.php";
string myParameters = "field=value1&field2=value2";
using (WebClient wc = new WebClient())
{
string getpage = wc.DownloadString("http://localhost/post.php");
MessageBox.Show(getpage);
wc.Headers[HttpRequestHeader.ContentType] = "application/x-www-form-urlencoded";
string HtmlResult = wc.UploadString(URI, myParameters);
MessageBox.Show(HtmlResult);
}
}
到目前为止一切顺利,它正在发挥作用,但这并不完全是我想在这里实现的目标。我可以使用POST方法,但是如何在发送数据之前使用GET?我想根据GET结果发送数据。
如果我应该更好地描述我正在尝试做什么,请告诉我。
谢谢。
编辑 这是我的PHP代码:
<?php
$a = session_id();
if(empty($a))
session_start();
echo "Session: ".session_id()."<br/>\n";
现在,回到我的C#代码,我在两条消息中得到不同的会话ID
请参考这个答案:Easiest way to read from a URL into a string in .NET
using(WebClient client = new WebClient()) {
string s = client.DownloadString(url);
}
默认情况下,WebClient不使用任何会话。因此,每个调用都会像处理您创建的新会话一样处理。要做到这一点,你需要这样的东西:
请参考这些答案:
public class CookieAwareWebClient : WebClient
{
private readonly CookieContainer m_container = new CookieContainer();
protected override WebRequest GetWebRequest(Uri address)
{
WebRequest request = base.GetWebRequest(address);
HttpWebRequest webRequest = request as HttpWebRequest;
if (webRequest != null)
{
webRequest.CookieContainer = m_container;
}
return request;
}
}
// ...
private void button2_Click(object sender, EventArgs e)
{
string URI = "http://localhost/post.php";
string myParameters = "field=value1&field2=value2";
using (WebClient wc = new CookieAwareWebClient())
{
string getpage = wc.DownloadString("http://localhost/post.php");
MessageBox.Show(getpage);
wc.Headers[HttpRequestHeader.ContentType] = "application/x-www-form-urlencoded";
string HtmlResult = wc.UploadString(URI, myParameters);
MessageBox.Show(HtmlResult);
}
}
GET
方法实际上只是通过地址线传递的参数,只需将您的请求发送到string.Format("{0}?{1}", URI, myParameters)
(或URI + "?" + myParameters
)并简单地读取响应。
我很久以前就知道了,但是:
byte[] readedData = null;
await Task.Run(async() =>
{
using (WebClient client = new WebClient())
{
client.DownloadProgressChanged += (obj, args) => progessChangedAction?.Invoke(args.ProgressPercentage);
readedData = await client.DownloadDataTaskAsync(requestUri).ConfigureAwait(false);
}
});
return readedData;
}