小さな問題があります。Request オブジェクトでデータを受け入れる ac# ファイルを開発しました。Request オブジェクトには文字列が含まれており、その文字列に対してさまざまな操作を実行しますが、問題は PHP ファイルからこの aspx ファイルを呼び出す必要があることです。
これは、ASPXファイルでデータを受け入れる方法です
protected void Page_Load(object sender, EventArgs e)
{
try{
byte[] byteArray;
byteArray = Request.BinaryRead(Request.TotalBytes);
// This bytes array to string method perfectly converts the request data into string.
string xmlString = Utility.Utility.ByteArrayToString(byteArray);
PHPファイルからJSON文字列を渡す場合は、どうすればよいか教えてください