Click here to Skip to main content
15,899,124 members
Please Sign up or sign in to vote.
0.00/5 (No votes)
See more:
In our system we've a Bulk Transaction Facility. here 1000+ customer transaction details are dumping into the database all at once. The transaction process happening in SQL Server DB. The Transaction is taking place for at least 2 or 3 mins. As of now during the Transaction we are not allowing the user to do anything. Rather once after the completion of transaction only the user is avail to work on other functionalities in the system. Now here i have to provide such a facility of Once after the data send to the DB. the user should avail to work on other functionalities with out keeping the system idle.. In b/w in case if the transaction completes successfully in the background then the system display the transaction status..

What I have tried:

Is it possible to achieve this Asynchronous. In case if it's then may i know how can i achieve this?

TranDALC = new TransactionDALC();
TranDALC.BulkAccountsForTransferTransaction(MiscDataVO, BulkAccountDetailsDT);
Posted
Updated 19-Sep-16 23:05pm
v5

Quote:
in case if the transaction completes successfully in the background then the system display the transaction status..


You may also want to look at SignalR to update the status once the async task is completed: ASP.NET SignalR Hubs API Guide - Server (C#) | The ASP.NET Site[^]
 
Share this answer
 

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900