我正在尝试使用第 3 方 REST API 的服务,他们将参数推送到我的 URL 上。就像是:
http://domainname/location.aspx?information=MM/DD/YY HH:MM:SS AM/PM
其中 domainname 是我的网站,而 location.aspx 是我的页面,它将读取正在推送的参数。如何在 ASP.NET Web Forms C# 中获取“信息”参数?谢谢。
string information = Request["information"];
string information = Request.QueryString["information"]
还有 jquery/javascript 方法。参考这篇文章