//读取文件
  public string ReadFile(string FilePath)
  {
   System.IO.StreamReader rd = System.IO.File.OpenText(FilePath);
   string StrRead = rd.ReadToEnd().ToString();
   rd.Close();
   return StrRead; 
  }