I have a problem with a View. Here's the code snippet:
public ActionResult AddAdvertisement()
{
...
return RedirectToAction("AdvCreated");
}
[HttpGet]
public ActionResult AdvCreated()
{
return View("AdvCreated", "abc");
}
then I see the error
The view 'AdvCreated' or its master was not found. The following locations were searched:
~/Views/Advertisement/abc.master
~/Views/Shared/abc.master
If I just go to URL http://localhost/AdvCreated everything is OK. Why ?