Posted on: 1/31/2015 12:12:47 AM | Views : 632

Hi,
I've just finished my first asp.net intranet application. In general - it does what it should.
There is just one thing which works not reliable. - A notification to the user.
Once the user filled a form and submitted the data, some C# does the work in the backend. During that time an UpdateProgress is shown.
After the work finished, the UpdateProgress disappears like it should - now is the time that the notification should be shown.
I tried two ways. First one just using a panel which I set visible=true with showing the result of the backend-work. Second way I removed that panel and fired a Jquery function to show a nice popup. Both ways only work some times.
Within the function that runs once I submitted, I also call a log-function to write the result into a logfile another function sends an email with the result to the authenticated user. Both things work 100%.
I enabled tracing in web.config and added trace ...

Go to the complete details ...