Re: asynchronous asp.net

Tech Tip: Click here to run a free scan for Windows Errors and optimize PC performance



Back before AJAX, I would simply use an <IFRAME> to make calls back to the
server. Perhaps you can do the same?

Main Page
<html>
<iframe id="tester" />
<script>
tester.source = tester.aspx; //html page is with test

function showresults()
{
//use this to display results once your process is complete
}

//Put in time out logic, or ignore logic for repeated calls.

</script>
<html>

tester.aspx

<html>
<%
if session("taskcomplete") then
response.write("<script>showresults();</script>")
else
//put in logic to refresh the source every so often
end if
%>
</html>




"CLEAR-RCIC" <CLEARRCIC@xxxxxxxxxxxxxxxxxxxxxxxxx> wrote in message
news:8F367EF7-85A8-48AF-A09B-9624E39FA029@xxxxxxxxxxxxxxxx
We have an asp.net application that will also use MSMQ. When a client
makes
a request, we want to check several databases and put each response in
MSMQ.
We don't want the client to wait for all responses to come back. We were
wondering if there is some component (maybe activex) that will sit on the
client and listen for call backs from the the server. We are also
concidering using AJAX to poll MSMQ every 5 seconds and show any new
responses. Has anyone had any experience with this?


.



Relevant Pages

  • Re: google talk ed altri con safari...
    ... oh bella, e che altro c'è? ... XHTML and CSS, for marking up and styling information. ... In some Ajax frameworks and in certain situations, ... with the web server. ...
    (it.comp.macintosh)
  • Re: DUML
    ... The view is HTML which is interpreted by your browser to form ... If you're using AJAX, why are you duplicating a "view" onto the ... client as possible. ... to push view-generation back to the server. ...
    (alt.html)
  • Re: AJAX (javascript help) - ASP.NET(C#)
    ... > Why based on "AJAX"? ... i need javascript code for html document and server .net code ... >> which returns data based on xmlhttp request object which i send to him. ... > While you can try, and ignore those responses, do not attempt to limit ...
    (comp.lang.javascript)
  • Re: asynchronous asp.net
    ... That is the whole goal of MS's implementation of AJAX in ATLAS. ... We don't want the client to wait for all responses to come back. ...
    (microsoft.public.dotnet.general)
  • Re: Immediately display changes to an HTML element
    ... the server using Ajax ... ... but in reality quite a lot of what is called AJAX is ... the possibility that responses from the server could follow a different ... sequence from the requests made for them. ...
    (comp.lang.javascript)