About 12,000,000 results
Open links in new tab
  1. Detailed 500 error message, ASP + IIS 7.5 - Stack Overflow

    IIS 7.5 , 2008rc2, classic asp, 500 error msg: The page cannot be displayed because an internal server error has occurred. I need to know how to configure IIS to get a more detailed error.

  2. 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 …

  3. 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.

  4. .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 …

  5. How to change session timeout in ASP.NET - Stack Overflow

    189 I am running an ASP.NET 2.0 application in IIS 6.0. I want session timeout to be 60 minutes rather than the default 20 minutes. I have done the following Set <sessionState …

  6. 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 …

  7. asp-controller and asp-action attributes not working

    Aug 6, 2016 · After a little bit of digging I found that asp-controller and asp-action attributes are called anchor tag helpers, and are part of the Microsoft.AspNetCore.Mvc.TagHelpers …

  8. How do I implement a checkbox list in ASP.NET Core?

    I am looking to implement a checkboxlist in ASP.NET Core, but am facing some difficulties. My ViewModel: public class GroupIndexViewModel { public Filter[] Filters { get; set; } } public c...

  9. How to upload files with asp-classic - Stack Overflow

    Aug 30, 2012 · I want to create a page with asp-classic where users can upload files or zipped folders. I've searched in Google but every solution I have found uses a third-party file. But I …

  10. How do you create a custom AuthorizeAttribute in ASP.NET Core?

    The approach recommended by the ASP.Net Core team is to use the new policy design which is fully documented here. The basic idea behind the new approach is to use the new [Authorize] …