Hi would like to know how can i display the response write of a certain page on a page from a different server.
ex.
Server1.HelloWorld.aspx has Response.Write("HELLO WORLD");
Server2.Default.aspx gets the response from Page1.aspx
and display it without using server sided code..
is this possible, because i know this is possible for images.
Thank you in advance for your help!
UPDATE: I would just need a text response from a page… something like “DONE” “PENDING”
You can use AJAX to do a
GETrequest for the relevant page you need to download a response from, here’s a basic example using jQuery:Have a look at jQuery.get() for more options such as error handling etc.