In my Asp.Net Core project I have some files excluded from the project.
OnlywhenIpublishthesefilesdonotappearinthewwwrootfolderoftheproject.<ItemGroup><NoneInclude="wwwroot\Features\**" CopyToOutputDirectory="Always" />
<!--...
Constantly while browsing the site the user is being redirected to the login screen. I myself navigate several screens by clicking the menus and randomly the system goes to the login. I already set the timeout of the session with a fairly high t...
I have a problem, let's explain:
I have a page called Index where I render all clientes of my database in a table, in that table there is an delete button that opens a Modal de Confirmação that creates a Form with...
I have the problem presented below and I do not know how to solve it, the system is complaining that it can not access my IAuthentication class.
The following error appears below.
Belowmycontroller'scodeusingSystem.Linq;usingSystem.Thread...
I'm having trouble testing my end-points with the post and asp.net core 2.1.
Controller Base
public class ControladorBase : Controller
{
protected IMapper _Mapper;
public ControladorBase()
{
}
public ControladorBa...
I have a contact list that is loaded dynamically using razor and Javascript to remove the rows and reorder the positions of the fields. The problem occurs when I click the delete record button and delete all the contacts (I send an ajax request...
I am creating several fields dynamically using Asp.net Razor and for this I am passing the index to a partial view and setting the name property of each field. Everything is working fine with all fields except Id and PersonId which are built usi...
I'm starting my studies with Asp.Net MVC and I'm having trouble getting a view from the main menu. I have an initial "_Layout" view with the following menu item:
<li>
<input type="radio" name="tabs" class="rd_tabs" id="tab3">...
Inconsistent accessibility: parameter type "IClientManager" is less accessible than the "ClientController.ClientController (IclientManager, UserManager)" method
Controller:
public class ClientController : Controller
{
private readon...