Good morning I have this hidden one that receives the value correctly:
<input type="hidden" id="idHorario"/>
But I need to get the hidden in the code, how can I proceed?
HorariosItens = await _context.HorariosItens...
It's the following, I'm doing a foreach this way.
int count = 1;
@foreach (var item in Model)
{
<input name="itemId_@count" value="@item.ProdutoId" type="hidden">
count++;
}
The problem is that in processing t...
I'm having a question: I'm creating a back-end system in asp.net core mvc and in my _Layout.cshtml I need to create and load a dropdown listing all the system's BRANCHES so that the user can select the branch he wants to manage. This selected br...
I have to load a list of ceps with almost 1 million records in GRID. So as not to be slow, I decided to use the "DataTable" feature and do loading, filters and paging using JavaScrip according to this tutorial:
link .
Charging is not working...
I'm not able to remove an ID when I click ... The error message appears: System.InvalidOperationException: 'Sequence contains no elements'
Here is my code below:
InstitutionController:
using Capitulo01.Models;
using Microsoft.AspNetCore....
I'm developing a website at asp.net c# , I have a contact page that contains a form for the user to fill out and send if they want to send an email.
I wanted the form page to inherit the properties of the remaining pages of the site, su...
Good evening ..
I have the following Controller: HomController
with Action: Login
Clicking on the Enter My URL button is as follows:
link
I would like the URL not to be displayed this way, but:
link
I've already tried to...
Greetings,
I have an View Index that passes the values of the "id" column to another View Index , as code below:
<a data-bind="attr: {href: url()}" target="_blank" href="@Url.Action("Index","Vw_RegistroVisita", new { i...
I'm using the Oracle.ManagedDataAccess.Client, it is referenced to the project containing the context.
I have my Context:
namespace Generico.Repositorio
{
public class Contexto : IDisposable
{
private readonly OracleConnecti...