public ActionResult Admin(ObjectModel OM)
{ DataSet ds = new DataSet();
DB objDB = new DB();
//Storing Dataset in model Dataset
OM.StoreAllData = objDB.SelectAllDetails(OM.DistrictId);
//Need to pass this Dataset into "Show" Method
return RedirectToAction("show", "Appform",{ ds = OM.StoreAllData });
}
public ActionResult show(DataSet ds){return View(OM);}
Bikesh SrivastavaPosted Aug 30, 2016, 6:56 AM
parth guptaPosted Aug 30, 2016, 5:49 AM
Rajeesh MenothPosted Aug 30, 2016, 5:37 AM
Vinay SinghPosted Aug 30, 2016, 5:34 AM
parth guptaPosted Aug 30, 2016, 5:30 AM
parth guptaPosted Aug 30, 2016, 5:23 AM
Rajeesh MenothPosted Aug 30, 2016, 5:22 AM
parth guptaPosted Aug 30, 2016, 5:20 AM
Rajeesh MenothPosted Aug 30, 2016, 5:20 AM
parth guptaPosted Aug 30, 2016, 5:18 AM
Rajeesh MenothPosted Aug 30, 2016, 5:17 AM