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'];
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