现在我写了这样的代码,来访问一个php网页
byte[] postData = Encoding.UTF8.GetBytes("type=calendar&date=2013-05-17");WebClient client = new WebClient();
client.Headers.Add("Content-Type", "application/x-www-form-urlencoded");
client.Headers.Add("ContentLength", postData.Length.ToString());byte[] responseData = client.UploadData("php网页url", "POST", postData);Response.Write(Encoding.UTF8.GetString(responseData));打印出来的结果是
Please visit us at ..... 
请问我写错了,还是我访问的那边服务器加了保护?我也试过用jquery ajax来访问 ,也是不能解决,得到
返回200的结果  但type=text/html (NS_ERROR_DOM_BAD_URI) context=Error loading content (NS_ERROR_DOCUMENT_NOT_CACHED)WebClient跨域post