您可以使用
Request.InputStream
// include this in the top of your page to use JavaScriptSerializer and Hashtable
using System.Web.Script.Serialization;
using System.Collections;
...
using (var sr = new StreamReader(Request.InputStream))
{
string body = sr.ReadToEnd();
// Deserialize JSON to C# object
// you can use some modern libs such as Newtonsoft JSON.NET instead as well
JavaScriptSerializer serializer = new JavaScriptSerializer();
Hashtable hashtable = serializer.Deserialize<Hashtable>(body);
string name = hashtable["name"].ToString();
string image = hashtable["image"].ToString();
string price = hashtable["price"].ToString();
}