Sunday, November 16, 2014

Master Content Page in MVC

Home.cshtml

@{
    ViewBag.Title = "Home";
    Layout = "~/Views/Home/SiteMaster.cshtml";
}


No comments:

Using Authorization with Swagger in ASP.NET Core

 Create Solution like below LoginModel.cs using System.ComponentModel.DataAnnotations; namespace UsingAuthorizationWithSwagger.Models {     ...