Home > Mahesh Farad

Creating Azure B2C users using Graph API in .Net Core App

This article will help to understand Azure B2C user create operation using .net core application. Below are steps for application setup on Azure Portal Go to Azure Portal https://portal.azure.com/ From All Resources find Azure B2C. Go to App Registrations and register the new application. Create new client secret that we are going to use to

This Article is TAGGED in , , , . Read more

Alphanumeric Sort Using PadNumbers

Problem Statement: Sort the Alphanumeric values Solution : below is the Code that helped to sort the alphanumeric values Example : you have the list var List = {a1,ba3,aa2,a2,ba2,aa3}; we can not sort this directly using [crayon-66067f4cc466b016313409/] so to sort this we need to PadNumbers to value and then sort the List. with the help

This Article is TAGGED in , , . Read more

Performance Test for Cursors in Stored Procedures

In this article, we will test the performance of the cursors with the help of the client statistics that shows the different statistics like Network statistics, Time statistics, Query Profile Statistics. Step#1: First reset client statistics by click on Query >> Reset client Statistics. This will clear the client statistics Step#2: Click

This Article is TAGGED in , . Read more

MaxJsonLength exception in ASP.NET MVC during JavaScriptSerializer

Problem Statement:  The following exception (error) occurs in ASP.NET when AJAX calls are made to PageMethod using jQuery AJAX or ScriptManager Error during serialization or deserialization using the JSON JavaScriptSerializer. "The length of the string exceeds the value set on the maxJsonLength property." Below code that helped to resolve the issue. Instead of

This Article is TAGGED in , . Read more