How to have modaldialogpopup in MVC controller C#
[HttpPost]public ActionResult Add(FormCollection fileupload)
{
if(condition)
{
}
else
{
ViewBag.Message = "Please select correct format";
/// Require Message box here
}
return View();
}
I need message box in else part.
I tried Json. Its not working perfectly.
Suggest me some samples