I am developing an web application using ASP.NET with C# where i want to show a notification to the Approver,if any approval is pending.
So how to do that.
Kilndly help me.
Know the answer? Post it — somebody with the same question will find it here.
Sign in to answer this question
It is the same account you read, post and publish with — and you will come straight back to this page.
Vishwakant TripathiPosted Sep 28, 2013, 6:30 PM
For this, you need to create a web method or service, either you can go with handler(.ashx) file (which one is better for you), and it should read in database if any approval is pending. On document.ready, by ajax request, you can call your method, and you can show an alert message or any other option to Approver for notification.
And if you want to show notification always whenever a new approval is added in db, so you need to set a timer to call ajax method on a time interval.