26 lines
478 B
C#
26 lines
478 B
C#
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");
|
|
|
|
}
|
|
}
|
|
}
|
|
} |