Where can I put the code that runs after the page returns to the browser

I want to send an email after the page returns to the browser. Where can I put this send email code so it doesn't delay the page being returned to the browser?

+1


source to share


1 answer


ASP.NET pages have an unload event that fires after the content is returned to the browser. This should be exactly what you are looking for.



+2


source







All Articles