About 11,400,000 results
Open links in new tab
  1. How to change session timeout in ASP.NET - Stack Overflow

    ASP.NET framework inserts a unique id to the URL, you can check this by disabling the cookie or by setting the cookieless attribute to true as you did. According to MSDN, By default, the …

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

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

    60 ASP.NET controls should rather be placed in aspx markup file. That is the preferred way of working with them. So add FileUpload control to your page. Make sure it has all required …

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

    May 23, 2017 · 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. Difference between ApiController and Controller in ASP.NET MVC

    Feb 29, 2012 · I've been playing around with ASP.NET MVC 4 beta and I see two types of controllers now: ApiController and Controller. I'm little confused at what situations I can choose …

  6. c# - ASP.NET 5 Authorize against two or more policies (OR …

    ASP.NET 5 Authorize against two or more policies (OR-combined policy) Asked 9 years, 8 months ago Modified 11 months ago Viewed 108k times

  7. ASP.NET Core: [FromQuery] usage and URL format - Stack Overflow

    ASP.NET Core: [FromQuery] usage and URL format Asked 7 years, 7 months ago Modified 1 year, 6 months ago Viewed 170k times

  8. How to enable CORS in ASP.NET Core - Stack Overflow

    Aug 11, 2015 · The origin check (as of ASP.NET Core 5.0) happens in a very simple way... i.e. case-sensitive ordinal string comparison (see source) between the strings you provided via …

  9. Select Tag Helper in ASP.NET Core MVC - Stack Overflow

    Jan 6, 2016 · Learn how to use the Select Tag Helper in ASP.NET Core MVC for creating dropdown lists and binding data efficiently.

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