ASP .net 动态数据上的插入可以在列表视图的同一页面上完成吗?
我想让用户以与谷歌警报类似的方式在同一页面上插入和编辑有关实体的信息:http ://www.google.com/alerts/manage 关于如何实现这一目标有什么建议吗?
I would like to have users insert and edit information about entities on the same page in a similar fashion to google alerts: http://www.google.com/alerts/manage
Any advice on how this could be achieved?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
可以在 Global.asax 中的 RegisterRoutes 方法中更改路由,如同一文件中的备注部分所示。
启用此部分:
而不是已经启用的:
还可以为特定表启用自定义路由。
It is possible changing the routing in the method RegisterRoutes in Global.asax as indicated in the remarks section present in the same file.
Enabling this section:
instead of the already enabled:
It's also possible to enable custom routes for particular tables.