protected void Button2_Click(object sender, EventArgs e)
 {
     requiredService.Service proxy = new requiredService.Service();
     string[] strs = proxy.Top10Words(Convert.ToString(top10TextBox.Text));
     foreach (string s in strs)
     {
         top10Result.Text += s + "\n";
     }
 }