24/08/2009, 05:07
|
| | Fecha de Ingreso: febrero-2008 Ubicación: Madrid
Mensajes: 474
Antigüedad: 16 años, 10 meses Puntos: 1 | |
Respuesta: Ayuda con Helpers
Código:
<% form_tag :action => 'index' %>
<%= text_field 'Notas','titulo','size'=>20 %>
<%= text_area 'Notas','msg','rows'=>25,'cols' => 90 %>
<%= submit_tag "Enviar" %>
<% end %>
¿Por qué este código me da error? Lo copio y lo pego tal cual en una vista (netbeans) y me aparecen un montón de errores: SyntaxError in Controlador#index
Showing app/views/controlador/index.html.erb where line #6 raised:
compile error
G:/NetBeansProjects/forms/app/views/controlador/index.html.erb:6: syntax error, unexpected kENSURE, expecting $end
Extracted source (around line #6):
3: <%= text_area 'Notas','msg','rows'=>25,'cols' => 90 %>
4: <%= submit_tag "Enviar" %>
5: <% end %>
...
... |