If my url is something like https://www.domainname.com/stuff/testpage.aspx/FirstName=John will the querystring request still get John?
I have in my page load the following:
lblMessage.Text = Request.QueryString("FirstName")
The lblMessage.Text is blank after the page loads. For the api I'm using they want a / instead of the typical ?
Go to the complete details ...