ASP.NET MVC 登入/登出 實例參考

2021/02/19閱讀時間約 1 分鐘
另記:
在controller內加入 [Authorize] 會強制先去登入。
ex:
using System;
using System.Collections.Generic;
using System.Linq;
using System.Web;
using System.Web.Mvc;

namespace Test.Controllers
{

[Authorize]

public class HomeController : Controller
{
public ActionResult Index()
{
return View();
}

public ActionResult About()
{
ViewBag.Message = "Your application description page.";

return View();
}

}
}
為什麼會看到廣告
    留言0
    查看全部
    發表第一個留言支持創作者!