For example, I have some exception processing code in Global.asax, where I call the SendAsync() method of SmtpClient to notify myself about the error.
If the Async property of the certain page is "false", I receive no letter. So, to fix it, do I have to set Async="true" on EVERY page of my ASP.NET WebForms application? Can I get any problems here?
Async="true" is needed only for email sending in my application.
I will be grateful for any help...