About 51 results
Open links in new tab
  1. Difference between .asp and .aspx pages? - Stack Overflow

    Dec 16, 2010 · ASP runs on IIS. ASPX runs on .Net framework. ASP uses VBScript for its code. ASP.NET allows the use of C#, VB.NET and other languages. ASP.NET gives access to all the tools …

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

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

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

  5. What is the purpose of global.asax in asp.net - Stack Overflow

    Feb 26, 2010 · ASP.Net framework uses the content in the global.asax and creates a class at runtime which is inherited from HttpApplication. During the lifetime of an application, ASP.NET maintains a …

  6. 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] attribute to …

  7. How to read AppSettings values from a .json file in ASP.NET Core

    This is mostly taken from the official documentation: To work with settings in your ASP.NET application, it is recommended that you only instantiate a Configuration in your application’s Startup class. Then, …

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

  9. How to set up Automapper in ASP.NET Core - Stack Overflow

    Step To Use AutoMapper with ASP.NET Core. Step 1. Installing AutoMapper.Extensions.Microsoft.DependencyInjection from NuGet Package. Step 2. Create a …

  10. I'm lost. What happened to ASP.NET MVC 5? - Stack Overflow

    Jul 18, 2018 · ASP.NET Core vNext on .NET 5 - August 2020: With the impending release of .NET 5, Microsoft has bumped the version numbers of the NuGet packages for ASP.NET Core to 5.0.0. …