From: kwatch@... (kwatch) Date: 2003-02-16T11:42:08+09:00 Subject: [Q] ERuby.import Hi, I have a question about mod_ruby and ERuby. I want to separate presentation from logic, and I create the following 2 files: logic.rhtml: ..======================================== <% username = 'ERUBY' ERuby.import('presentation.rhtml') %> ..======================================== presentation.rhtml: ..======================================== hello <%= username %> ..======================================== But when accessing http://localhost/logic.rhtml, I got the error '500 Internal Server Error'. What should I modify? How to pass data to other *.rhtml? regards, kwatch