Basscyst
10-13-2005, 12:39 AM
You can use a client or serverside xmlhttp request, and "post" or "get" the form data to the specified url. If it's html data being returned in lieu of xml then you'll want to request the responseText of the xmlhttp object. It returns the html as a string, which is not navigable through the DOM, but I just added the string to a hidden div and then pulled out the nodes I wanted. It would be cool if there was some way to treat that string as you would when it was displayed by the browser so you wouldn't have to add unessary data to the page just to get the data you actually wanted displayed. Perhaps someone could help us both out. In any case here is a serverside example of what I'm reffering to:
http://www.codingforums.com/showthread.php?t=69083
This code is part of a client page that does a clientside request to this page which does a serverside request to an external url and then returns the results of the serverside request back to the client. Personally I think it's quite nifty. :p
Basscyst
http://www.codingforums.com/showthread.php?t=69083
This code is part of a client page that does a clientside request to this page which does a serverside request to an external url and then returns the results of the serverside request back to the client. Personally I think it's quite nifty. :p
Basscyst
