如果我想通过 URL 登录(不仅是登录)网站,如何将这个 (http://postclient.codeplex.com/) dll 库用于我的 Windows Phone 项目。
示例:登录地址为:http: //xchat.centrum.cz/~guest~/login/index.php ?name=nickname&pass=password
在那之后,我想解析 HTML,如果我有来自 url 的哈希 - 但这是一个很长的故事。:)
感谢帮助。:)
编辑:
我发现了类似的东西:
private void Button1Clk(object sender, RoutedEventArgs e)
{
string strName = "nickname";
string strPass = "password";
UTF8Encoding encoding=new UTF8Encoding();
string postData="name="+strName;
postData += ("&pass="+strPass);
byte[] data = encoding.GetBytes(postData);
// Prepare web request...
HttpWebRequest myRequest =
(HttpWebRequest)WebRequest.Create("http://xchat.centrum.cz");
myRequest.Method = "POST";
myRequest.ContentType = "application/x-www-form-urlencoded";
Stream newStream = myRequest.GetResponse();
// Send the data.
newStream.Write(data,0,data.Length);
newStream.Close();
}
但是脚本与 GetResponse() 有错误;