i have a problem in mvc core ,i have two ActionResult
when page displayed render index and when call ResetPassword all data is hidden (lost)
i want to make postback when call ResetPassword to submit form
render the data of index without select Data Again
public ActionResult Index()
{
var emps = Db.EmployeesData.ToList();
return View(emps);
}
public ActionResult ResetPassword(EmployeePage employeePage)
{
return View("index",employeePage);
}
i have a problem in mvc core ,i have two ActionResult
when page displayed render index and when call ResetPassword all data is hidden (lost)
i want to make postback when call ResetPassword to submit form
render the data of index without select Data Again
Ahmed Salama is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
Check out our Code of Conduct.
1