My preferred way is this. It handles the escaping and parsing for you.
WebClient webClient = new WebClient();
webClient.QueryString.Add("param1", "value1");
webClient.QueryString.Add("param2", "value2");
string result = webClient.DownloadString("http://theurl.com");
与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…