阻止用户点击MVC2中的html.routelink?

发布于 2024-10-14 16:58:50 字数 55 浏览 2 评论 0原文

我正在使用路线链接并根据从 viewModel 获得的信息设置参数。有没有办法阻止用户点击链接?

I'm using a routelink and setting parameters based on what I get from my viewModel. Is there a way to prevent the user from even being able to click the link?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(1

末が日狂欢 2024-10-21 16:58:50

一旦超链接出现在页面上,就无法阻止用户点击该超链接。即使有,也没有任何意义。也许您想要做的是,仅在某些条件下呈现视图中的链接,如下所示:

<% if(someCondition)
{
Html.RouteLink(
            item.Head,
            "Details",
            new
            {
              controller = "Article",
              action = "Details",
              id = item.ID
            });
}
%>

There is no way to prevent a user from clicking an hyperlink once it is on the page.Even there is, it doesn't make any sense. Maybe what you were trying to do was, render the link in view only on some conditions like this:

<% if(someCondition)
{
Html.RouteLink(
            item.Head,
            "Details",
            new
            {
              controller = "Article",
              action = "Details",
              id = item.ID
            });
}
%>
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文