You'll most likely have to write your own handler. You may be able to make your own class which inherits umbraco._Default (which the default.aspx page inherits) and modify the default.aspx file to point to your custom class.
Not entirely sure if it'd work, I don't think Umbraco uses the type-by-name anywhere, so it could.
Asynchronously call a web method from a user control
I am trying to make an asynchronously call to a web method from inside a user control running in Umbraco.
As the pages in Umbraco do not implement the IHttpAsyncHandler interface, you cannot use the web service proxy's Begin and End method.
Is there a way to make the Umbraco pages asynchronous, or do you have to implement your own handler ?
You'll most likely have to write your own handler. You may be able to make your own class which inherits umbraco._Default (which the default.aspx page inherits) and modify the default.aspx file to point to your custom class.
Not entirely sure if it'd work, I don't think Umbraco uses the type-by-name anywhere, so it could.
is working on a reply...