public ActionResult CompanyYoutubePageInfo(string CompanyName)
 {
     try
     {
         string result = companyprofiles.YoutubeSearch(CompanyName);
         if (!result.StartsWith("["))
         {
             result = "[" + result + "]";
         }
         JArray  youtubechannels = JArray.Parse(result);
         JObject resultPage      = (JObject)youtubechannels[0];
         ViewBag.RPage    = resultPage["items"][0];
         ViewBag.PlayList = JObject.Parse(companyprofiles.YoutubeChannelPlayList(resultPage["items"][0]["id"].ToString()));
     }
     catch (Exception e) { }
     return(PartialView("_CompanyYoutubePageInfoPartial"));
 }