ASP.NET 是否有类似 django-admin 的等效功能?
我正在寻找任何允许对表格进行类似编辑并且没有与之相关的软件成本的东西。
I'm looking for anything that allows similar editing of tables and doesn't have a software cost associated to it.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
不在裸露的 ASP.NET 中。 Django 框架可以摆脱这样的管理界面,因为它的 ORM、模板引擎和 MVT 机制都是固定的。某些 ASP.NET 框架可能有它,但无论如何都会有软件成本。
Not in bare ASP.NET. The Django framework can get away with having an admin interface like this because its ORM, template engine, and MVT mechanisms are all fixed. Some ASP.NET frameworks may have it, but there will be a software cost regardless.
您可以在 Visual Studio 2010 中创建动态数据站点,其功能与 Django 管理站点相同。它需要实体框架。
You can create the Dynamic Data Site in Visual Studio 2010, which does the same thing like Django-admin site. It requires Entity Framework.