01 public ActionResult GetProducts()
02 {
03
04List
products = DataBase.DBAccessGetProducts();
05 return View(products);
06}
You need to set ViewBag.Title to the localized title contained in the resource files. Which code segment should you add to the action at line 03?