aspx receive variable from url code example
Example: aspx receive variable from url
string value = Request.QueryString("hello");
// or if this doesn't work
string value = Request.QueryString["hello"];
string value = Request.QueryString("hello");
// or if this doesn't work
string value = Request.QueryString["hello"];