aspx receive variable from url

Code Example - aspx receive variable from url

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