I need to validate if all of my Radio has been checked, can you help me validate this in JS?
My cshtml is mounting the radio's through a List < > of the Model.
<div id="checklists" class="row">
<div class="col-md-6">...
I can not perform enumeration, I have already switched to another information reception in the View but I do not know how to correct it, I checked other forms in StackOverflow but I did not understand.
Model:
namespace WebApplication4.Mod...
How can I send the user to a certain page block by passing the id in the url. For example: link , how to pass this type in ASP.NET MVC using return RedirectToAction .
The line of my code looks like this: return RedirectToAction("Ind...
In short, it only works if I put index.php in the URL.
It looks like it's in .htaccess, but I do not know where.
I would like to know which setting is incorrect or what I could do to find out my error.
Data: Debian (9) Apache / 2.4.25 (Debian...
I'm doing a job, and I need to do a web application for tracking tasks.
The requirements are those of the topic. It is a web application made in ASP.NET MVC and access database creating a CRUD.
I'm having difficulty going through the connect dat...
Hello, everyone.
I have a problem that I do not even know if there is a solution like this.
I have an ActionResult that returns the contents of a chart in Jquery.
The result of this graphic will always need to be cached so page does not...
Controller.cs
public ActionResult pesquisarCliente(string _codigo)
{
var r = db.Pedido.AsQueryable();
if (!string.IsNullOrEmpty(_codigo))
{
r = r.Where(n => n.Cliente...
I have the following error in my View : when I pass @class="classe boot-strap" is not used, even passing View inside parameter @class it insists on using 'text-box single-line' , code snippets.
Code Razor...
Is there a service package in the MVC standard? Would it be an MVCS?
For example, I have a ConnectionFactory class - which serves to connect to the database. That would be a service. Where do I put this in the MVC pattern? Would it be in the...