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

  2. asp.net mvc - ViewModel Best Practices - Stack Overflow

    From this question, it looks like it makes sense to have a controller create a ViewModel that more accurately reflects the model that the view is trying to display. However, I'm curious about some ...

  3. What is the difference between ASP.NET and ASP.NET MVC?

    Aug 28, 2012 · ASP.NET MVC is an application framework based on the Model-View-Controller architectural pattern. This is what might be considered a "canned" framework for a specific way of …

  4. ASP.NET MVC - Getting QueryString values - Stack Overflow

    May 15, 2018 · Under ASP.NET MVC are you supposed to pick up QueryString params the same way you do in ASP.NET WebForms? or does the [AcceptVerbs(HttpVerbs.Get)] declaration get used …

  5. asp.net mvc - MVC [HttpPost/HttpGet] for Action - Stack Overflow

    I am using MVC C#. Can somebody give an example on why one would use [HttpPost/HttpGet] for an Action. How can an active have both - what is the practical use?

  6. How to call another controller Action From a controller in Mvc

    Jun 1, 2013 · I need to call a controller B action FileUploadMsgView from Controller A and need to pass a parameter for it. Its not going to the controller B's FileUploadMsgView(). Here's the code: ControllerA:

  7. asp.net mvc - How do I prevent multiple form submission in .NET MVC ...

    Updated answer for ASP.NET Core MVC (.NET Core & .NET 5.0) Update note: Remember ASP.NET Core is still called "Core" in .NET 5.0. I'm going to stick to the least-impact use case like before, …

  8. asp.net mvc - Html.DropDownList - Disabled/Readonly - Stack Overflow

    Oct 28, 2009 · Notice @Thomas' answer below. Marking the Html.DropDownList as disabled stops the form from posting the value it holds. How can the control be disabled or read-only but still submit the …

  9. asp.net mvc - How can I pass parameters to a partial view in mvc 4 ...

    How can I pass parameters to a partial view in mvc 4 Asked 11 years, 11 months ago Modified 6 years, 5 months ago Viewed 368k times

  10. asp.net mvc - Redirect to Action in another controller - Stack Overflow

    return RedirectToAction("LogIn", "Account"); The problem is that I get a 404 when this line gets executed because an attempt is made to redirect to a non-existent action in Controller A. I want to …