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

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

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

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

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

  8. How to upload files with asp-classic - Stack Overflow

    Aug 30, 2012 · I want to create a page with asp-classic where users can upload files or zipped folders. I've searched in Google but every solution I have found uses a third-party file. But I …

  9. How to specify the port an ASP.NET Core application is hosted on?

    May 21, 2016 · When using WebHostBuilder in a Main entry-point, how can I specify the port it binds to? By default it uses 5000. Note that this question is specific to the new ASP.NET Core …

  10. c# - ASP.NET Web API : Correct way to return a 401/unauthorised ...

    Jul 3, 2015 · ASP.NET Web API : Correct way to return a 401/unauthorised response Asked 10 years, 4 months ago Modified 2 years, 11 months ago Viewed 285k times