Displaying 1 result from an estimated 1 matches for "tempcontroller".
Did you mean:
itemscontroller
2006 Feb 11
1
What one *cannot* store in a session???
Hi
Can someone tell me what i *cannot* store in a session.
For ex.
class TempController < ApplicationController
def index
session[:thread]=Thread.new do
loop{}
end
render(:inline=>"abc")
p ''post rendering''
return
end
end
does not work. although the print at the end of the method is executed,
the string ''abc'' is n...