public class test{
public string a {get; set;}
}
public ActionResult Index(Test test)
{
ViewBag.a = test.a;
return view();
}
public ActionResult Test()
{
return view("test");
}
public void Configure(IApplicationBuilder app, IHostingEnvironment env)
{
if (env.IsDevelopment())
{
app.UseDeveloperExceptionPage();
}
else
{
app.UseExceptionHandler("/Home/Error");
// The default HSTS value is 30 days. You may want to change this for production scenarios, see https://aka.ms/aspnetcore-hsts.
app.UseHsts();
}
app.UseStaticFiles();
app.UseCookiePolicy();
app.UseSession();
ตัวอย่างการใช้งาน
Code (C#)
public IActionResult Index()
{
HttpContext.Session.SetString("isLogin", "false");
if (!IsLogin() || !User.Identity.IsAuthenticated)
{
return RedirectToAction("Login"); //Fixed url not change. http://localhost:6969/Account/Login
}
return View();
}
Date :
2019-07-11 09:54:38
By :
xxx
No. 2
Guest
จริงฯแล้วผมก้ไม่เข้าใจ MVC อย่างถ่องแท้ มีหลายฯท่าน ณ.ที่นี้สามารถอธิบายความสงสัยได้ แต่ผมก็ไม่กล้าถาม ตามที่ผมเข้าใจ C ไม่มีความหมาย/ความสำคัญอะไรเลย