如何在Asp.net C#页面中接收SMS请求参数。
我无法收到这样的邮件:
string from = Request.Params["msisdn"] == null ? string.Empty : Request.Params["from"].ToString();
string to = Request.Params["to"] == null ? string.Empty : Request.Params["to"].ToString();
string body = Request.Params["text"] == null ? string.Empty : Request.Params["message"].ToString();
请帮帮我
Angreg Singh