I do not really know how to explain this topic, what happens
is that made my application in mvc and asp .net, then every time I enter my menu on my website and access to a page my url is this:
localhost: 1523 / en / quienessomos
Menu that I u...
I work in an ASP MVC project, I am trying to create an entity Material for which I have the following Model:
public class MaterialViewModel
{
[Display(Name = "Número de Registro")]
public int MaterialId { get; set; }
[Displ...
Hi, I am new in c# and I need to pass in the following función(PostFailure) in js a variable string of c# . The problem is that the message parameter has a json that I can not understand where it comes fr...
I have the following code.
<div class="table ">
@grid.GetHtml(tableStyle: "table highlight hoverable"
, columns: new[] {
grid.Column("Persona"),
grid.Column("Calificacion"),
grid.Column("...
I made a view that relates the role of the user to the user, created the view with the dynamic check boxes that can register roles and then assign it to the user, only when sending the marked roles, in the controller does not return to the contr...
I'm creating a calendar and I do not want to allow you to select past dates, in the js I'm placing the following:
<script>
$('.datepicker-default').datetimepicker({
language:'es',
daysOfWeekDisabled: [0, 6],
todayHig...
When I create an Asp.Net Core application with Authentication of Individual Users Accounts, it asks me for certain information:
Domain name
Application ID
Registration policy or login
What should I put in them?
I have a page with MVC 2 , which I had in .aspx , Javascript code, but since I need to use that page from a < em> widget native to iOS , I want to analyze an XML . I had to remove the Javascript code to a separate file because the &a...
I have a list of data in a table, where each row has its respective save . This button saves the date and document attached.
I have it this way:
When I click on save and call my action, it brings me all the rows, so I have to do a fo...
My question is how can I solve a case with the handling of checkboxfor for my data model I have the following model:
public int Id { get; set; }
[Required(ErrorMessage = "La fecha no puede estar vacía ")]
public DateTime FechaProcesoRe...