Skip to main content

Posts

Showing posts from August, 2017

Localization in angular4 by fetching data from server using VS2017

Localization in angular4 by fetching data from server using VS2017 Localization  in angular4 by fetching data from server using VS2017 1,This is my webapi controller from where the data for localization is fetched //This is our webApi COntroller  // GET: api/local/5    [HttpGet, Route("api/local/{name}")]         public IDictionary Get(string name)         {                             Dictionary dict = new Dictionary ();                 dict.Add("user01", "Nombre");//Name                 dict.Add("user02", "Nombre del Padre");//Father Name                 dict.Add("user03", "Direccion postal");//Postal Address                 return dict.ToDictionary(p => p.Ke...