From: Gregory Brown Date: 2007-08-13T10:36:44+09:00 Subject: Re: Can .rhtml files include text from .txt or .html file? On 8/12/07, Sfdesigner Sfdesigner wrote: > > Then http://blade.nagaokaut.ac.jp/cgi-bin/scat.rb/ruby/ruby-talk/245920 > > may > > hopefully be helpful. > > > > Felix > > Thanks! I got this to work > > <% print IO.read("header.html") %> You can also do <%= IO.read 'header.html' %> no need for the print.