客户端 用C# 代码:
public static void PostString (string address)
{
   string data = "Time = 12:00am temperature = 50";
   string method = "POST";
   WebClient client = new WebClient ();
   string reply = client.UploadString (address, method, data);   Console.WriteLine (reply);
}问 服务器端(aspx) 如何接收和处理 发送过来的数据? 注意是UploadString ,不是UploadFile