Kamala Harris - Cheap Books - Computer Jobs - Air Force 1 Shoes - Web Design Forums

PDA

View Full Version : Communicating between ASP pages


hawkes
Oct 27th 2005, 12:07 pm
Hi.

I have two IIS servers running both serving seperate clients. I want one ASP page to be able to use the functionality of a page on the second server without the need to host the second page on the first server.

Can anyone tell me how to get two ASP pages to talk to each other. For example the first one passes soe user inputted information and uses the result from the second page access to respond to the first page?

Arnica
Oct 27th 2005, 1:25 pm
Use an http request to send the parameters and receive the data from the second server.

XML HTTP Request (http://www.google.com/search?q=XML+HTTP+Request) for more info. Be careful if the data you're passing is sensitive or could allow SQL injection.

Zinho
Oct 28th 2005, 1:14 pm
I advise you to use WinHTTP instead of XML library cause you will run into compatibility problems for sure. It is a bad coded library and it sometimes work sometimes not. WinHTTP 5.1 should do the job

relixx
Oct 28th 2005, 2:47 pm
Querystrings! :D :p