About 10,800,000 results
Open links in new tab
  1. 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.

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

  3. ASP.NET Web Application ( .NET Framework 4.8) not running within IIS …

    Feb 3, 2024 · I am wondering if anyone can help me, I am trying to run asp.net web application which is using .net 4.8 on Windows Server 2022 Standard with IIS 10 (on a virtual machine).

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

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

    I have set up my AppSettings data in file appsettings/Config .json like this: { "AppSettings": { "token": "1234" } } I have searched online on how to read AppSettings values from .json

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

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

  8. ASP.NET: HTTP Error 500.19 – Internal Server Error 0x8007000d

    Jul 8, 2016 · Here is what I have checked and tried so far: Install ASP.NET by calling aspnet_regiis -i Set my application to use different application pool (ASP.NET v4.0, .NET v4, etc) …

  9. asp.net - How to use Created (or CreatedAtAction / CreatedAtRoute) in ...

    Dec 22, 2017 · How to use Created (or CreatedAtAction / CreatedAtRoute) in an asp net core api Asked 7 years, 11 months ago Modified 5 years, 1 month ago Viewed 71k times

  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.