I did the deployment of a web app, and I realized that the background image that I put in the body makes it difficult to read the content, so I want to change it, and try to do the publish and rebuild again but it has not worked that way.
<...
I have the following problem, when returning a list generated in a method for a viewbag it throws an error to me at the moment of the return, I put the image to them so that they see where the error throws me
public List<Card> GetCar...
Actually, I have two questions to ask you related to the partialview.
First, I will comment on how I show the partialview
Question One
Add.cshtml
@Html.EditorFor(x => x.Suma)
<div class="modal fade" id="exampleModal" tabind...
I have a series of cookies and sessions which are created at the time of login in a successful way in an application. My question is how can I eliminate these cookies and session created at the time of logout?
I ha...
I'm working with the MVC design pattern, I have a three-layer architecture, is it necessary to put the models in the Models folder ?, can the models go in another project?
I have the following dropdownlist, which shows the values 5,10 and 15:
<% Dim listItems = New List(Of ListItem) From { _
New ListItem() With { _
.Text = "5", _
.Value = 5 _
}, _
New ListIt...
How can I create a CRUD for the AspNetUsers table, creating a MVC 5 controller with views using Entity Framework
This is the structure of the table: AspNetUsers
This is the Model: IdentityModels
namespace Portal.Models
{
publi...
I have a problem
I try to send an object in javascript to my controller, the problem is that the controller receives as a list attribute and this list contains another list as an attribute.
I think the problem is that I do not send or do n...
Changing the user registration form that asp.net mvc5 brings by default, I noticed that the error messages that it sent came in English:
These errors are shown in the Validation Summary ( ValidationSummary )
When searching online for the o...