javascript function receives values but fields are not receiving values.
Controller function
public JsonResult GetSequencia(DateTime dataAbate)
{
db.Configuration.ProxyCreationEnabled = false;
var lote = db...
I have the following problem ( For better explanation we have attached image ).
Image
link
Owner 1 arrives with 100 oxen;
Owner 2 arrives with 30 oxen;
Owner 3 arrives with 50 oxen.
The procedure for these steers to be vaccina...
I have a class called Camera
[Table("Camara")]
public class Camara
{
[Key]
public int CamaraId { get; set; }
[Display(Name = "Nome")]
[Required(ErrorMessage = "O Campo {0} é requirido!")]
[StringLength(50, MinimumLength...
My application is based on using the primary key type int in Aspnet Identity as described here . The problem is when it comes to creating a user. In the original template, I added a property in the RegisterViewModel, associated the Roles in a D...
Personal I have a following problem.
I had to create an audit page of my system, where it displays the edits that were made on a certain form.
When a form is populated for the first time, it shows all form variables, as you can see in the...
In my application I have this Html Helpers :
@Html.DropDownList("estado", new List<SelectListItem>{
new SelectListItem {Text="Pago", Value="Pago"},
new SelectListItem {Text="Pendente", Value="Pendente"}
}, "Selecione o...
I'm having an error that is not making I can not compile the project.
I am using ASP.NET C # entity framework code first
The error indicates
the best overload for '.ctor' does not have a parameter named 'throwifv1schema'
using System.D...
I need to change the "
<select data-plugin="selectpicker">
<option data-icon="wb-briefcase">Pessoa Jurídica</option>
<option data-icon="wb-heart">Pessoa Física</option>...
I'm developing an ASP.NET WEB page with MVC and I made all the model, control and display settings in Visual Studio 2017 and it created a Local BD by SQL Server LocalDB to store the data but there is an automated function that migrates the table...
I made a project first by feeding my application ASP.Net MVC to a SQL Server database that I set in the web.config (connectionString) file.
Then, following some courses I did, I started using Migrations to update the database tables.
P...