using System; using System.Collections.Generic; using System.Linq; using System.Web; using System.Web.Mvc; namespace Chruch.Net.Controllers { public class Register2019Controller : Controller { // GET: Register2018 public ActionResult Index(string id) { if (id=="EN") { return View(); } else { return View("IndexCn"); } } } }