Files
number_zj/20220330_Vote/Ewide.Web.Entry/Controllers/ManageController.cs
2023-06-28 23:07:04 +08:00

35 lines
913 B
C#

using Microsoft.AspNetCore.Authorization;
using Microsoft.AspNetCore.Mvc;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Threading.Tasks;
namespace Ewide.Web.Entry.Controllers
{
[AllowAnonymous]
public class ManageController : Controller
{
public IActionResult VoteResult()
{
ViewBag.Title = "宁波市“甬江建设杯”选票";
return View();
}
public IActionResult Login()
{
//ViewBag.Title = "宁波市“甬江建设杯”选票";
return View();
}
public IActionResult Expert()
{
ViewBag.Title = "宁波市“甬江建设杯”选票";
return View();
}
public IActionResult nbczResult()
{
ViewBag.Title = "共赴宁波之春 报名结果";
return View();
}
}
}