[lnkForumImage]
TotalShareware - Download Free Software

Confronta i prezzi di migliaia di prodotti.
Asp Forum
 Home | Login | Register | Search 


 

Forums >

comp.lang.ruby

wired text_field and text_area

misiek

3/7/2006 9:17:00 PM

I need to return some values to the form
so I do
<%= text_field 'property', 'name' , :value => session[:property][:name]
%>Name<br>


and the same fo text area
<%= text_area 'property', 'description', :value =>
session[:property][:description] , "cols" => 30,"rows" => 6
%>Description<br> <= but here does not work ? why if I switch on
text_field is OK