when I go to edit, it tells me that it has updated but the entry's do not change.
I assume the error is either in the controller or in my definition,but they seem right
Here is the controller text:
class StudentController < ApplicationController
scaffold :student
def list
@students = Student.find_all
end
def delete
Student.find(@params['id']).destroy
redirect_to :action => 'list'
end
def edit
@Student=Student.find(@params['id'])
end
end
and the rhtml :
<td><%=link_to student.id,:action => "edit", :id => student.id %></td>