Live Chat Icon For mobile
Live Chat Icon

How to access the Parameters passed in via the URL

Platform: ASP.NET| Category: Basic

Call the Request.QueryStringmethod passing in the key. The method will return the parameter value associated with that key.
VB.NET


Request.QueryString('id') 

C#


Request.QueryString['id'];

Share with

Related FAQs

Couldn't find the FAQs you're looking for?

Please submit your question and answer.