read value from cookie January 06, 2022 function readCookie(cname) { var name = cname + "="; var decoded_cookie = decodeURIComponent(document.cookie); var carr = decoded_cookie.split(';'); for(var i=0; i Read more
setCookie function January 06, 2022 let username = 'Max Brown'; // Set a Cookie function setCookie(cName, cValue, expDays) { let date = new Date(); date.setTime(date.getTime() + (expDays * 24 * 60 * 60 * 1000)); const expires = "expires=" + date.toUTCString(); document.cookie = cName + "=" + cValue + "; " + expires + "; path=/"; } // Apply setCookie setCookie('username', username, 30); Read more
Implementing Console App in Dynamics CRM Using Azure Application ID And Secret Key January 03, 2022 https://www.c-sharpcorner.com/article/implementing-console-app-in-dynamics-crm-using-azure-application-id-and-secret-k/ Read more