public ActionResult Withdraw(Withdraw withdraw) { withdraw.Username = Session["username"].ToString(); if (Banking.WithDraw(withdraw)) { TempData["Msg"] = "🎉 Withdraw Successful !!!"; return(RedirectToAction("Main")); } TempData["Msg"] = "😢 Oops! Something went wrong please try again later."; return(RedirectToAction("Main")); }