About 12,300,000 results
Open links in new tab
  1. 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 …

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

  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. HTTP Error 500.30 - ASP.NET Core app failed to start [closed]

    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 …

  5. c# - Resolving instances with ASP.NET Core DI from within ...

    Resolving instances with ASP.NET Core DI from within ConfigureServices Asked 10 years, 2 months ago Modified 1 year, 2 months ago Viewed 635k times

  6. Asp.net Hyperlink control equivalent to <a href="#"></a>

    Explains the ASP.NET HyperLink control and its equivalent to HTML anchor tag for creating hyperlinks.

  7. How to increase the max upload file size in ASP.NET?

    0 I have a blog post on how to increase the file size for asp upload control. From the post: By default, the FileUpload control allows a maximum of 4MB file to be uploaded and the execution timeout is 110 …

  8. c# - Setting connection string with username and password in …

    I am working on my first ASP.NET Core MVC application.What is the right way to specify the connection string in a ASP.NET Core MVC application with a sql server backend requiring sql authentication?

  9. asp.net - How to force Visual Studio to re-create the SSL certificate ...

    Dec 9, 2021 · When a web project is created, Visual Studio automatically generates a SSL certificate and prompts you to install it. Everything works fine. That certificate has now expired and I cannot …

  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 currentUserId = User.Identity.