About 12,800,000 results
Open links in new tab
  1. Command line to install/upgrade .NET Core - Stack Overflow

    Oct 2, 2016 · Are there command line commands to install or upgrade .NET Core? I checked to see if I had .NET Core was installed on my computer using dotnet --version only to notice that …

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

  3. c# - Increase upload file size in Asp.Net core - Stack Overflow

    Aug 1, 2016 · Currently, I am working with Asp.Net Core and MVC6 need to upload file size unlimited. I have searched its solution but still not getting the actual answer. I have tried this …

  4. Get DataKey values in GridView RowCommand - Stack Overflow

    May 12, 2010 · I have a GridView with an associated DataKey, which is the item ID. How do I retrieve that value inside the RowCommand event? This seems to work, but I don't like the …

  5. c# - ASP.NET Routing with Web Forms - Stack Overflow

    I've read ASP.NET Routing… Goodbye URL rewriting? and Using Routing With WebForms which are great articles, but limited to simple, illustrative, "hello world"-complexity examples. Is …

  6. asp.net - How to POST a FORM from HTML to ASPX page - Stack …

    Oct 16, 2008 · How do I post a form from an HTML page to and ASPX page (2.0) and be able to read the values? I currently have an ASP.NET site using the Membership provider and …

  7. asp.net - How to prevent a hyperlink from linking - Stack Overflow

    Is it possible to prevent an asp.net Hyperlink control from linking, i.e. so that it appears as a label, without actually having to replace the control with a label?

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

    189 I am running an ASP.NET 2.0 application in IIS 6.0. I want session timeout to be 60 minutes rather than the default 20 minutes. I have done the following Set <sessionState …

  9. asp.net mvc - What is an MVC child action? - Stack Overflow

    Sep 21, 2012 · I read about child actions in MVC (fundamental book), but I don't really know what it is? Could some one please explain these methods?

  10. How to update a claim in ASP.NET Identity? - Stack Overflow

    Using latest Asp.Net Identity with .net core 2.1, I'm being able to update user claims with the following logic. Register a UserClaimsPrincipalFactory so that every time SignInManager sings …