From: Sam Ginko Date: 2009-07-20T08:13:17+09:00 Subject: Re: external html page include That is what I thought and it aint working. I'm trying to open a file on another server i:e http://docs.google.com/View?id=10. So I guess iframe is the only option 7stud -- wrote: > Sam Ginko wrote: >> How? with a File.Open()?. I'm new to ruby so I'm not sure if that is >> what I should do. >> > > You could write: > > f = File.open("page.htm") > f.read() > > or you could combine that into one line: > > File.open("page.htm").read() > > or you could use the shortcut: > > IO.read("page.htm") -- Posted via http://www.ruby-forum.com/.