About 26,100,000 results
Open links in new tab
  1. c# - ASP.NET Core Identity - get current user - Stack Overflow

    To get the currently logged in user in MVC5, all we had to do was: using Microsoft.AspNet.Identity; [Authorize] public IHttpActionResult DoSomething() { string currentUserId = User.Identity.

  2. HTTP Error 500.30 - ASP.NET Core app failed to start

    Apr 22, 2021 · Deployment mode: Framework-Dependent Target Runtime: Win-x64 or Portable In my case, when I tried to deploy ASP.NET Core 5 application, it occurred due to not setting the change (read/write/delete) permission to the web application folder …

  3. .NET Core vs ASP.NET Core - Stack Overflow

    Feb 26, 2020 · ASP.NET Core using .NET Framework - most dependencies are self-contained, only executes on Windows, will have access to Windows-specific NuGet packages, needs the .NET framework version which is targeted installed on the machine.

  4. C# ASP.NET Single Sign-On Implementation - Stack Overflow

    It offers an elegant and easy way to add support for Single Sign-On and Single-Logout SAML to your ASP.NET, ASP.NET MVC, ASP.NET Core, Desktop, and Service applications.

  5. How to set web.config file to show full error message

    Jul 26, 2012 · Learn how to configure the web.config file to display detailed error messages for effective debugging and troubleshooting.

  6. How to correctly use the ASP.NET FileUpload control

    I'm trying to use the FileUpload control in ASP.NET Here's my current namespace setup: using System; using System.IO; using System.Collections.Generic; using System.Linq; using System.Text; using

  7. asp.net - CustomErrors mode="Off" - Stack Overflow

    Sep 19, 2008 · Explains how to configure the CustomErrors mode in ASP.NET applications to display detailed error messages for debugging purposes.

  8. How can I set the Secure flag on an ASP.NET Session Cookie?

    Sep 18, 2009 · Learn how to set the Secure flag on an ASP.NET session cookie for enhanced security in your web application.

  9. How do I access Configuration in any class in ASP.NET Core?

    Aug 30, 2016 · I have gone through configuration documentation on ASP.NET core. Documentation says you can access configuration from anywhere in the application. Below is Startup.cs created by template public c...

  10. asp.net mvc - Your connection is not private …

    May 19, 2017 · 129 While debugging a local ASP.NET application on Chrome for localhost Https site it's giving error: Your connection is not private NET::ERR_CERT_COMMON_NAME_INVALID. I am not able to open localhost without https. How can I resolve this to be able to debug?