Hi,
I have a message form sending a confirmation after successfully sent.
//Redirect after successfull sending
return RedirectToAction("Sent");
public IActionResult Sent()
{
return View();
}
I can't figure out why the sent action doesn't sending the view to the browser?
Please help me...
Thanks,
Poul Erik