asp.net mvc IsAuthenticated attribute
Posted
by kusanagi
on Stack Overflow
See other posts from Stack Overflow
or by kusanagi
Published on 2010-04-23T07:15:50Z
Indexed on
2010/04/23
7:23 UTC
Read the original article
Hit count: 300
is any solution to mark method like this
[IsAuthenticated(true)]
public ActionResult Profile()
{
return View();
}
not call if (request.IsAuthenticated)
?
© Stack Overflow or respective owner