I'm trying to show a preview of files (.pdf). Currently I select the files with the tag "input file multiple" and I generate a list of the names of the selected files, now I would like to add a link that when I click on it open me in a modal win...
I'm starting in this MVC , I had already done a few things in C# , VB.Net and well I still qualify as a rookie just 3 weeks with the MVC . Well, my question is this, I am currently developing a website with MVC where I have two...
I have two models:
public class TipoSolicitudesDTO
{
[Key]
public int TipoSolicitudID { get; set; }
public string NombreTipoSolicitud { get; set; }
public int EstadoTipoSolicitud { get; set; }
}
public class Solicitudes...
I have the following problem I am trying to send some data from ajax to my mvc driver but it did not manage to recover them this is my code:
var Url = '@Url.Action("Save", "InspectionDailies")';
var user = 0;
function getval(sel) {...
I have problems with the following method.
public async Task<string> EditUsuario(
string id,
string userName,
string email,
string phoneNumber,
int accessFailedCount,...
I have a view that corresponds to a survey. It is loaded with the questions and at the same time in the last column has a DropDowList with the possible answers. The problem I have is that I can not get my controller to receive the data of the qu...
What I want to do is basically Login and show the user the information related to something like a Dashboard.
for example, when you start a session in stackoverflow, it shows you the questions you have asked ... the same thing I want to do in...
I am creating a program that keeps track of vehicles but at the moment of entering its properties and I give it in "Create" I get the following error
I do not know what that error is, if someone can perfect
@model WebCar.Models.Vehicu...
Basically in my RouteConfig.cs I am trying to map a route that varies depending on the current browser language.
What I'm trying to get to is a dynamic path like:
/books-with-description/
/libros-con-descripcion/
these strings are const...
I have a view in MVC which when clicking on a button I must return to a previous view, obtaining the values of method, controller and form to which I will redirect, I already get the values but I do not know how to assign them in the @Url .Actio...