I have a SQL Server 2005 database which holds a fairly basic schema.
I'm fine with accessing it through Management Studio, but I need to be able to provide read-write access to other internal staff so they can modify the contents of certain tables.
Can anyone recommend a tool (preferably free) that can look at a SQL Server database and generate a very basic C# ASP.Net Web Application with CRUD operations?
Everything is internal, so I don't care at this point about security or foreign key constraints. I just want a trivial interface without having to write all the plumbing and UI code myself.
Thanks!