[thelist] frames without <frames>
Wade Armstrong
thelist at lists.evolt.org
Thu May 9 17:13:01 2002
I know you've already gotten an answer for this, but, to make your code
easiest to port from one system to another, you can use Microsoft's XMLHTTP
component, which ships with any system running IE 5 or higher.
Good article on using XMLHTTP to get .html pages from another site:
http://www.4guysfromrolla.com/webtech/110100-1.shtml
Wade
on 5/9/02 4:52 AM, Simon Hibbard at shibbard@seri.co.uk wrote:
> I came accross this possible solution, the problem is that this only
> allows access to files on the actual server via the FileSystemObject.
>
> The files i need to display are URL's to files elsewhere.
>
>> -----Original Message-----
>> From: thelist-admin@lists.evolt.org
>> [mailto:thelist-admin@lists.evolt.org]On Behalf Of Jonathon Thomas
>> Sent: 09 May 2002 10:39
>> To: thelist@lists.evolt.org
>> Subject: RE: [thelist] frames without <frames>
>>
>>
>> Simon
>>
>> About the only solution I know is one I used recently - but it only
>> works in Jscript as far as I know (does VBScript have an equivalent to
>> eval() ? ):
>>
>> Var fso=Server.CreateObject("Scripting.FileSystemObject");
>> Var st=fso.OpenTextFile(yourpage.html);
>> Eval(st.ReadAll());
>> st.close();
>> -----Original Message-----
>> Hi,
>>
>> I have a page in which the content is DB generated and want to
>> load in pages dependent on certain conditions using ASP.
>>
>>
>> Isnt is a shame you cant <!--#include"<%=some_file%>-->
>>