I am trying to use services of a 3rd party REST API, where they push the parameters onto my URL. Something like:
http://domainname/location.aspx?information=MM/DD/YY HH:MM:SS AM/PM
where domainname is my website, while location.aspx is my page which will read the parameters being pushed. How do I grab the "information" parameter in ASP.NET Web Forms C#? Thanks.