I want the URL and email to open those urls and a "mail to" window, respectively
right now the URL seems to be looking for a subfolder, instead of the the web site...here the code :
<td><%= student.Lastname %></td>
<td><%= student.Firstname %></td>
<td><%= student.date %></td>
<td><%= student.Info %></td>
<td><%= link_to student.url, :action =>student.url%></td>
<td><%= link_to student.email, :action => "show",:email => student.email %></td>
</tr>
<% end %>
how can I make them real links, anyone know?