Posts

Showing posts from November, 2017

Display Pie Chart in Chart.js Using MVC C# SQL Database

Image
View Page:- @{     ViewBag.Title = "DisplayPieChart" ;     } < html > < head >     < script src ="https://code.jquery.com/jquery-1.12.4.js"></ script >     < script src ="~/Scripts/ChartJs/charts/Chart.min.js"></ script >     < script src ="~/Scripts/ChartJs/Legendtext/legend.legacy.js"></ script >     < script >         $(document).ready( function () {             DispPieCharts();         });         function DispPieCharts() {             $.ajax({                 url: "/chartjs/DispRec" ,                 dataType: "text" ,                 crossDomain: true ,                 success: function (data) {                     var json = $.parseJSON(data);                     var len = json.length;                     var PieData = []                     for ( var i = 0; i < len; i++) {                   

SSO in C# MVC

            In this Section, We Know about SSO stands for Single Sign-On. Using SAML for  exchanging  Authentication and  authorization. SAML stands for Security Assertion Markup Language.       You Need to Third Party tool for Using SSO but it cost. sample providers are CommponentSpace tool. Download and install Your Local Machine. You can Use this on Trial But not implement Trial on Your Server.                We Go on Functionality First thing its Partner IdP it's for Partner Identity Provider. It's Important Connect SSO Connection Server.it's Working Like a Token. But it's not created by Developers. Its Created By Federation Server, not IIS Server and  Certificate File Also give To Access Their Provided. another One is  SingleSignOnServiceUrl this Url will go to Your page into Another Web page SSO Login  Function.     Add Your ComponentSpace DLL To Reference in Your Project.                  This above There Infomation is Requirement From Your Client