About 50 results
Open links in new tab
  1. Newest 'asp.net' Questions - Stack Overflow

    Feb 16, 2026 · ASP.NET MVC on .NET 4.6 : session and cookies being cleared as soon as RedirectToAction or Redirect is called I have an ASP.NET MVC web application on .NET 4.6 that …

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

    190 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 …

  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. syntax - ASP.NET "special" tags - Stack Overflow

    The official name is "server-side scripting delimiters" or "ASP.NET inline expressions". Visual Studio 2008 syntax highlighting settings dialog calls these "HTML Server-Side Script". Microsoft people call …

  5. ASP.NET Core 8 Web API : how to add versioning? - Stack Overflow

    Nov 22, 2023 · I'm creating a new ASP.NET Core 8 Web API. In my previous projects with .NET 6 or .NET 7, I can use:

  6. ASP.NET page life cycle explanation - Stack Overflow

    Dec 10, 2011 · There are 10 events in ASP.NET page life cycle, and the sequence is: Init Load view state Post back data Load Validate Events Pre-render Save view state Render Unload Below is a …

  7. Host Asp.net Core Web Api locally - Stack Overflow

    Aug 3, 2020 · If your web api and the client app are in the same intranet, you could let the client app directly access the web api after the web api hosted on IIS by using hosting server's IP address. …

  8. Disable ASP.NET Forms button after click to prevent double clicking

    Nov 14, 2024 · I have an ASP.NET button that I need to disable after the user clicks it to prevent double-clicking. Once the submit completes it has to be enabled again. Can anyone help me with this?

  9. How to disable Browser Link in ASP.NET Core (.NET 6, VS 2022)

    Nov 13, 2021 · How to disable Browser Link in ASP.NET Core (.NET 6, VS 2022) Asked 4 years, 3 months ago Modified 1 year, 2 months ago Viewed 23k times

  10. Does an ASP.NET Core 8 application use a StartUp.cs file?

    Dec 14, 2023 · In ASP.NET Core (which includes .NET 8), the Startup.cs class is still a central part of the application's configuration, but it's not the only way to set up your application.