Answers for "aspx receive variable from url"

C#
0

aspx receive variable from url

string value = Request.QueryString("hello");
// or if this doesn't work
string value = Request.QueryString["hello"];
Posted by: Guest on May-04-2021

Code answers related to "aspx receive variable from url"

C# Answers by Framework

Browse Popular Code Answers by Language