An asynchronous operation cannot be started at thistime.
Asynchronous operations may only be started within an asynchronoushandler
or module or during certain events in the Page lifecycle. If this exception occurred while executing a Page,
ensure that the Page is marked<%@ Page Async="true" %>
Description: Anunhandled exception occurred during the execution of the current web request.
Please review the stack trace for more information about the error and where itoriginated in the code.
Exception Details: System.InvalidOperationException:An asynchronous operation
cannot be started at this time. Asynchronousoperations may only be started within an asynchronous
handler or module orduring certain events in the Page lifecycle.
If this exception occurred whileexecuting a Page, ensure that the Page is
marked <%@ PageAsync="true" %>.
I got the following error while running the application; we needed to add Async attribute to the page directive and set the value is set to true.
<%@ Page Language="C#" AutoEventWireup="true" Async="true" CodeBehind="ProgressForm.aspx.cs" Inherits="MVC_tutorials.ProgressForm" %>
Post your comments / questions
Recent Article
- How to fix CMOS Checksum Error in Computer or Laptop | SOLVED
- Reactivating windows after a Hardware change on PC or Laptop
- FIXED: Windows reported that the hardware of your device has changed. Error code :0xc004F211
- "redirect" is not defined pylance("reportUndefinedVariable)
- This action cannot be completed because the file is open in SQL Server(SQLEXPRESS) - FIXED
- Unicode error 'unicodeescape' codec can't decode bytes in position 2-3: truncated UXXXXXXXX escape
- Could not find the 'angular-devkit/build-angular:dev-server' builder's node package | Angular Error
- Error: error:0308010C:digital envelope routines::unsupported
Related Article