I have a main page that calls a sub page (see code below) and in the controller I just set link1, link2, and link3 to be some hard coded test pages, but when i view the frames page below all the frames are empty. If I move the hard code links into the place of link1,2,3 then it works fine, but i want to use variables as I want the frames to display different things depentent on user variables. Does this make sense? Thanks <!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.0 FRAMESET //EN"> <html> <frameset cols="33%,33%,33%"> <frame src="<%= @link1 %>"> <frame src="<%= @link2 %>"> <frame src="<%= @link3 %>"> <NOFRAMES> <body>Frames Not Supported</body> </NOFRAMES> </frameset> </html> --~--~---------~--~----~------------~-------~--~----~ You received this message because you are subscribed to the Google Groups "Ruby on Rails: Talk" group. To post to this group, send email to rubyonrails-talk-/JYPxA39Uh5TLH3MbocFFw@public.gmane.org To unsubscribe from this group, send email to rubyonrails-talk+unsubscribe-/JYPxA39Uh5TLH3MbocFFw@public.gmane.org For more options, visit this group at http://groups.google.com/group/rubyonrails-talk?hl=en -~----------~----~----~----~------~----~------~--~---