Hello,
I have an asp.net web API. Now I would like to add a login page and sort of monitoring page to my web API. I just added View folder and created a cshtml file. But I couldn't find layouts for this view. There is no such Shared folder and _Layouts.cshtml file. Would you please guide me?
I have an asp.net web API. Now I would like to add a login page and sort of monitoring page to my web API. I just added View folder and created a cshtml file. But I couldn't find layouts for this view. There is no such Shared folder and _Layouts.cshtml file. Would you please guide me?
C#:
@{
Layout = "~/Views/Shared/_Layout.cshtml";
}