aspx menerima variabel dari url

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