in the below image when i clicked select button test id and test name data should be bind to code and name testbox respectively from controller. that means binding data to the same view.
from controller i'm passing it but, page not loading so data is not binding.
controller code:
- public async Task
TestMasterDetails( string TestID) - {
- TestMasterModel _testMasterModel = new TestMasterModel();
- TestMasterDetails _testMasterDetails = new TestMasterDetails();
- _testMasterDetails = await GetTestMasterDetails(!string.IsNullOrEmpty(TestID) ? TestID : GetDefaultTestID());
- _testMasterModel = _testMasterDetails.InformationModel;
- return View("TestMasterDetails", "MstTestMaster");
- }
i tried below return type also
return RedirectToAction("TestMasterDetails", "MstTestMaster");

Laxmidhar SahooPosted Jan 12, 2020, 1:12 AM
Jignesh KumarPosted Jan 10, 2020, 11:19 PM
Rajeesh MenothPosted Jan 10, 2020, 8:52 AM