I have an issue with one page in asp.net web application. There are several steps which are being performed on the page_load event of this page and once everything is done, it redirects to another page with post information.
My question is I want to show/display messages once each step is completed on the page. All the code is on Page_Load event.
I want to show like,
- Creating an API call URL...
- API called...
- Token Generated...
- Redirect URL created...
- Redirecting to client URL ...
I tried using, Thread.Sleep and System.Diagnostics.Trace.WriteLine, but didn't get success.