1.

How To Access The Parameters Passed In Via The Url?

Answer»

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



Discussion

No Comment Found