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

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

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

  4. ASP.NET Web Application ( .NET Framework 4.8) not running …

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

  5. How to enable CORS in ASP.NET Core - Stack Overflow

    Aug 11, 2015 · The origin check (as of ASP.NET Core 5.0) happens in a very simple way... i.e. case-sensitive ordinal string comparison (see source) between the strings you provided via …

  6. Difference between ApiController and Controller in ASP.NET MVC

    Feb 29, 2012 · I've been playing around with ASP.NET MVC 4 beta and I see two types of controllers now: ApiController and Controller. I'm little confused at what situations I can choose …

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

  8. How do I get client IP address in ASP.NET Core? - Stack Overflow

    Feb 23, 2015 · Can you please let me know how to get client IP address in ASP.NET when using MVC 6. Request.ServerVariables ["REMOTE_ADDR"] does not work.

  9. ASP.NET Core Get Json Array using IConfiguration

    Dec 26, 2016 · In ASP.NET Core 2.2 and later we can inject IConfiguration anywhere in our application like in your case, you can inject IConfiguration in HomeController and use like this …

  10. SQLite in ASP.NET Core with EntityFrameworkCore

    How do you add and use an SQLite database in an ASP.NET Core web application, using EntityFramework 7 ? I dived into ASP.NET Core the moment I heard about it and created my …