ASPX reçoit la variable de l'URL

string value = Request.QueryString("hello");
// or if this doesn't work
string value = Request.QueryString["hello"];
Av3