Posts by marksao • 163 points
4 posts
-
0
votes0
answers70
viewsQ: Web Api Calls 2
Well, I have a somewhat boring task that is the handling of Cookies, I make a request by sending as parameter a code that I want to access, my API opens the page with Webdriver, maps and takes the…
-
2
votes0
answers243
viewsQ: Beginform makes GET instead of POST
I have a controller that has two actions; public ActionResult Cadastrar() { return View(); } //[ValidateAntiForgeryToken] [HttpPost] public ActionResult Cadastrar(Usuario usuario) { if…
-
0
votes1
answer341
viewsQ: How to concatenate a list of an object into a property of another object?
I have the following model: public class Usuario { public int idUsuario { get; set; } public string Nome { get; set; } public string Email { get; set; } public string Senha { get; set; } public int…
-
14
votes4
answers1204
views