Initial commit

This commit is contained in:
Chris Chen
2022-09-08 08:04:32 -07:00
commit 184db15773
4604 changed files with 503905 additions and 0 deletions
@@ -0,0 +1,26 @@
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");
}
}
}
}