Sunday, May 3, 2015

Function Used to navigate to previous page

function CancelFun() {
    /// <summary> Function Used to navigate to previous page </summary>
    history.go(-1)
    return false;
}

No comments:

Using Authorization with Swagger in ASP.NET Core

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