ASP .net 动态数据上的插入可以在列表视图的同一页面上完成吗?

发布于 2024-11-05 03:18:13 字数 161 浏览 4 评论 0原文

我想让用户以与谷歌警报类似的方式在同一页面上插入和编辑有关实体的信息: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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

我一直都在从未离去 2024-11-12 03:18:13

可以在 Global.asax 中的 RegisterRoutes 方法中更改路由,如同一文件中的备注部分所示。

启用此部分:

routes.Add(new DynamicDataRoute("{table}/ListDetails.aspx") {
                  Action = PageAction.List,
               ViewName = "ListDetails",
               Model = DefaultModel
            });

而不是已经启用的:

routes.Add(new DynamicDataRoute("{table}/{action}.aspx")
            {
                Constraints = new RouteValueDictionary(new { action =  List|Details|Edit|Insert" }), Model = DefaultModel
            });

还可以为特定表启用自定义路由。

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:

routes.Add(new DynamicDataRoute("{table}/ListDetails.aspx") {
                  Action = PageAction.List,
               ViewName = "ListDetails",
               Model = DefaultModel
            });

instead of the already enabled:

routes.Add(new DynamicDataRoute("{table}/{action}.aspx")
            {
                Constraints = new RouteValueDictionary(new { action =  List|Details|Edit|Insert" }), Model = DefaultModel
            });

It's also possible to enable custom routes for particular tables.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文