public ActionResult Create(Info info)
 {
     //Get the HttpPost request from the Comments form and fill with the remaining information
     info.countryId = Convert.ToInt16(Session["CountryId"]);
     info.infoDate = DateTime.Now;
     info.ip = GetUserIP();
     info.ipLocation = getCityLocationFromIp(info.ip);
     WorldDataContext _dataContext = new WorldDataContext();
     //Insert the Info object into the database and submit the changes
     _dataContext.Infos.InsertOnSubmit(info);
     _dataContext.SubmitChanges();
     return Redirect("/");
 }