I have a SimpleAction with execute method as follows:
C#async void myAction_Execute(object sender, SimpleActionExecuteEventArgs e)
{
await Task.Delay(1000);
}
Unfortunately this gives the error:
Asynchronous operations are not allowed in this context. Page starting an asynchronous operation has to have the Async attribute set to true and an asynchronous operation can only be started on a page prior to PreRenderComplete event.
I have seen this similar issue (Q494002) but the fix suggested by several other sites (add Async="true" to the @Page directive) does not seem to work here. Is there anyway I can call async methods from controllers?
My demo project is attached,