About 15,000,000 results
Open links in new tab
  1. .NET Core vs ASP.NET Core - Stack Overflow

    Feb 26, 2020 · 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 …

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

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

  5. How to change session timeout in ASP.NET - Stack Overflow

    ASP.NET framework inserts a unique id to the URL, you can check this by disabling the cookie or by setting the cookieless attribute to true as you did. According to MSDN, By default, the SessionID …

  6. .net - Missing asp.net features on IIS 10.0 - Stack Overflow

    Oct 18, 2017 · Missing asp.net features on IIS 10.0 Asked 8 years, 1 month ago Modified 3 years, 11 months ago Viewed 30k times

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

  8. c# - ASP.NET Core form POST results in a HTTP 415 Unsupported …

    Jun 14, 2017 · ASP.NET Core form POST results in a HTTP 415 Unsupported Media Type response Asked 8 years, 6 months ago Modified 1 year, 8 months ago Viewed 317k times

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

    Feb 29, 2012 · Quote: Note If you have worked with ASP.NET MVC, then you are already familiar with controllers. They work similarly in Web API, but controllers in Web API derive from the ApiController …

  10. c# - AddTransient, AddScoped and AddSingleton Services Differences ...

    Jul 1, 2016 · I want to implement dependency injection (DI) in ASP.NET Core. So after adding this code to ConfigureServices method, both ways work. What is the difference between the …