I have a long running process that is called via a Nancy Module Get method. Rather than have the browser hang while the process runs I would like this call to be asynchronou
try setting the page attribute Async="true"in the aspx page
after doing that it wold look like this
<%@ Page Language="C#" AutoEventWireup="true" CodeFile="XXX.aspx.cs" Inherits="xxx" Async="true" %>
the in tcode behile file you can make the tasks and methods of type async and calll await tasks from them ...
it might work