External login not working Identity server 4 asp.net core
External service configuration not working with identity server 4.
External service configuration not working with identity server 4.
Using DNN (dotnetnuke, dnnsoftware) CMS, does anyone have any idea how to split up skin ascx files (eg. myskin.ascx that uses header.ascx and footer.ascx) but still have the ability to use DNN panes in these header and footer skins?
I’m having some luck but it’s not working 100% yet.
I have below json object to convert for c# class. { "Token": “Token”, "ref": 1 } The converted c# class is given below. public class ABC { public string Token{get;set;} public int ref{get;set;} } But I received following error message from c#. Member modifier ‘ref’ must precede the member type and name How do I … Read more
I have to clear hex characters from exception message in a better way. For now it works replacing characters manually which seems total disaster like this : var clearedStr = str.Replace(Convert.ToString((char)0x01), "") .Replace(Convert.ToString((char)0x02), "") .Replace(Convert.ToString((char)0x03), "") .Replace(Convert.ToString((char)0x04), "") .Replace(Convert.ToString((char)0x05), "") .Replace(Convert.ToString((char)0x06), "") .Replace(Convert.ToString((char)0x07), "") .Replace(Convert.ToString((char)0x08), "") .Replace(Convert.ToString((char)0x0B), "") .Replace(Convert.ToString((char)0x0C), "") .Replace(Convert.ToString((char)0x0E), "") .Replace(Convert.ToString((char)0x0F), "") .Replace(Convert.ToString((char)0x10), … Read more
If the Web.config has this setting:
I want to access a shared mailbox via Microsoft Graph.
What I found so far to access a shared mailbox is the following GET request: “https://graph.microsoft.com/v1.0/users/{sharedmailboxmailaddress}/messages”
In shared folder of ASP.NET C#, I create a .cshtml which defines a button that can GET data from an API. I would like to generate an url and use it to update an iframe of a viewer.
Scope value = “https://graph.microsoft.com/.default” OR “https://graph.microsoft.com/beta”
Using .net 4.6.1, I’m doing a calculation on the backend to determine when a customer can select an order date, depending on their weekly invoice day. The calculation is working correctly as is the SelectedDate portion, however, when SelectedDate happens to fall within the following month, my calendar isn’t automatically advancing to show that month by default, it always displays the current month regardless. What am I doing wrong?