Reputation: 9017
Is there any "Access-like" tool for sql server and that is web based? I mean having rich controls and automatically creating web forms.
My goal is to create an offline database in SQL server. I just don't know what is the best tool to use.
Upvotes: 2
Views: 4244
Reputation: 499042
You can use access with a SQL Server backend, though this of course is not web based.
As far as I know, there is nothing that will create a CRUD web application for you.
I suggest reading and learning about ASP.NET and ASP.NET/MVC, with either C# or VB.NET.
There are many tools that help and assist with the data access - ORM tools like nHibernate and Entity Framework, but these will not create the data for you.
SQL Server also supports the OData protocol for exposing data on the web.
Upvotes: 3
Reputation: 9800
Do you mean managing sql server from a web inteface ? http://sqlwebadmin.codeplex.com check this
The SQL Server Web Data Administrator enables you to easily manage your SQL Server data, wherever you are. Using its built-in features, you can do the following from Microsoft Internet Explorer or your favorite Web browser:
Upvotes: 0