Hi,
I have a situation where I want to display toastr notification on successfull completetion of operation without clicking and showing.on button click it is working but i need on operation . My code is
- @{
- if (TempData["OperationResult"] != null)
- {
- string alertClass = "";
- var operationResult = (EntryOperationOutBase)TempData["OperationResult"];
- if (operationResult.OperationStatus == OperationStatus.Success)
- {
- //I shuold be able to call and show toastr here with below message
- @operationResult.ResultMessageToShow
- }
- else
- {
- //I shuold be able to call and show toastr here
- @operationResult.ResultMessageToShow
- }
- }
- }
- // Toastr is

Mukesh NayakPosted Feb 25, 2018, 1:20 AM
mcuprykPosted Feb 22, 2018, 8:56 PM
Ramesh PalanivelPosted Apr 4, 2017, 7:23 AM