aspdaddy

msg:951878 | 5:40 pm on Aug 19, 2003 (gmt 0) |
If I understand, you want to display pages without the user knowing the url? To do this, you can use the m/s xml component: function getURI( byval strURI ) dim objXMLParser set objXMLParser = server.CreateObject("Microsoft.XMLHTTP") objXMLParser.open "GET", strURI, false objXMLParser.send getURI = objXMLParser.responseText end function
|
dimoss

msg:951879 | 7:08 pm on Aug 19, 2003 (gmt 0) |
Thanks for the answer.. The hiding of the url is one part of my question. The other is how to achieve to make the downloading of the files which reside in another server and not in mine, available.. However I am interested in your solution about the xml component.. Could you give me an example using this component with a hypothetical url.. Sorry for asking this but I am not an ASP expert..:-) Waiting for your answer.. Thanks in advance.. Denis
|
too much information

msg:951880 | 7:58 pm on Aug 19, 2003 (gmt 0) |
Hey dimoss, why don't you put that file on the other server as well and call it from your main server. That way you can feed the results into your current page and then handle them like a string.
|
aspdaddy

msg:951881 | 11:07 pm on Aug 19, 2003 (gmt 0) |
<% strPage="http://www.whatever......." Response.Write GetURI (strPage) %>
|
dimoss

msg:951882 | 10:03 am on Aug 20, 2003 (gmt 0) |
Hi, I tried to put the file on the other server but it didn't worked either.. Thanks for the reply aspdaddy..:-) Denis
|
|