Problem from ASP.NET calling Asynchronous operations
Posted by: Al Pascual,
on 06 May 2009 |
View original | Bookmarked: 0 time(s)
Another quick fix to a common problem asked in the ASP.NET Forums When trying to run Asynchronous operations in a ASP.NET page (ASPX) or a page calling a webservice that makes Asynchronous calls, you want to make sure the page is mark with the correct property otherwise an Exception with the error will be thrown. <%@ Page Language="C#" AutoEventWireup="true" Async="true" CodeBehind="Test.aspx.cs"
Asynchronous operations are not allowed in this...