ASPX Receba variável de URL
string value = Request.QueryString("hello");
// or if this doesn't work
string value = Request.QueryString["hello"];
Av3
string value = Request.QueryString("hello");
// or if this doesn't work
string value = Request.QueryString["hello"];