0
ritesh87 created
- ABP Framework version: v6.0.2
- UI type: MVC
- DB provider: EF Core
- Tiered (MVC) or Identity Server Separated (Angular): no
- Exception message and stack trace: 500 Internal Server Error
- Steps to reproduce the issue:"
- Add new Edit Modal for a View page which includes an Id.
- Pop up and all others are working. Save also works, but after the save is done through an App Service Error pops up at OnPostAsync without any detailed StackTrace.
public async Task<IActionResult> OnPostAsync() { try { ExamAdminMember.ExamId = Id; await _examAppService.CreateUpdateExamAdminMember(ExamAdminMember); return NoContent(); } catch (Exception ex) {
throw;
}
}