I would like to know what to do or what steps to follow to be able to list a field in a table (in SQLServer) in a DropDownList with AJAX.
I am a development practitioner and I was assigned a project for internal use by the company, which focu...
I am developing a web application which consumes the data from a API , this at the time of login returns me a token . This token must be used in the other internal consultations of the application since it must be sent in each req...
I have a model like the following:
public class Model_ejemplo
{
public HttpPostedFileBase image { get; set; }
}
in my controller I receive my model with this property
[HttpPost]
public ActionResult index(Model_ejemplo Model)
{
Retur...
I am consuming an api through the HttpClient service which works fine, but at the time of making another request it throws me an uncontrolled exception. With this last I mean that when making the first request it returns the answer to me well, b...
I am at a crossroads, since I am developing a web app where I must consume an api by GET and POST, the logic of the service is solved, but I would like to refactor the code so that I do not have to repeat the same pieces in each request.
I ha...
I am developing a new platform which consumes data from an API of the SBIF, but the JSON with the data that it returns to me comes like this
{
"Dolares":
[
{
"Valor": "603,31",
"Fecha": "2018-04-27"...
Currently this code gives me an error when the session expires, because it loses the data, what I would need to be able to store the connection data, the variable that never loses the data and that is accessible to all controllers.
In the ses...
I am working with ASP.Net MVC 5 and EF6, I have a class to edit users of the application and fill in a DropDownList the roles that exist and has preselected the role of the user, when doing post selecting another Role returns me a exception in t...
I come with you as I would like to know how to do the following.
In this table:
When I select the checkbox I generate an arrangement to save the value of the selected checkboxes, the detail is that I need to be able to link the value of...
My problem is as follows. I have a code for a login, where I keep the username of the user who logged in Session["USERNAME"] . What I'm trying to do is put in my variable wea the ID of the user who just logged in using his username...