public ActionResult SaveLabAppooitment(BLLLabTxnApppoitment blgen, string[] testlist)
{
UpdateModel(bllobj);
bllobj = blgen;
int savesucc = bllobj.BLLLabAppoitmentSave();
if (savesucc == 1)
{
return RedirectToAction("LabAppooitmentList");
}
else
return View();
}
here am want to pass blgen object from view and also want to pass testlist from the ajax call
both at one tym is it possible
ejaz mirzaPosted Nov 29, 2018, 7:39 AM
Sreekanth ReddyPosted Nov 29, 2018, 7:02 AM
Sreekanth ReddyPosted Nov 29, 2018, 6:58 AM
ejaz mirzaPosted Nov 29, 2018, 6:51 AM
Sreekanth ReddyPosted Nov 29, 2018, 4:50 AM