在 Razor / MVC3 中使用 @Html.ActionLink 获取原始文本?

发布于 2024-11-27 08:50:29 字数 396 浏览 0 评论 0原文

给定以下 Html.ActionLink:

@Html.ActionLink(Model.dsResults.Tables[0].Rows[i]["title"].ToString(), "ItemLinkClick",
    new { itemListID = @Model.dsResults.Tables[0].Rows[i]["ItemListID"], itemPosNum = i+1 }, ...

模型中的数据在标题字段中包含 HTML。但是,我无法显示 HTML 编码值。 IE。带下划线的文本显示,周围带有 ....

我已经在 ActionLink 的文本部分尝试过 Html.Raw,但没有成功。

有什么建议吗?

Given the following Html.ActionLink:

@Html.ActionLink(Model.dsResults.Tables[0].Rows[i]["title"].ToString(), "ItemLinkClick",
    new { itemListID = @Model.dsResults.Tables[0].Rows[i]["ItemListID"], itemPosNum = i+1 }, ...

Data from the model contains HTML in the title field. However, I am unable to display the HTML encoded values. ie. underlined text shows up with the <u>....</u> around it.

I've tried Html.Raw in the text part of the ActionLink, but no go.

Any suggestions?

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

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

发布评论

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

评论(5

才能让你更想念 2024-12-04 08:50:29

如果您仍然想使用助手为链接文本创建带有原始 HTML 的操作链接,那么我不相信您可以使用 Html.ActionLink。但是,此 stackoverflow 问题的答案描述了创建一个执行此操作的助手。

我会手动编写链接 HTML,并使用 Url.Action 帮助器创建 Html.ActionLink 本来会创建的 URL:

<a href="@Url.Action("ItemLinkClick", new { itemListID = @Model.dsResults.Tables[0].Rows[i]["ItemListID"], itemPosNum = i+1 })">
    @Html.Raw(Model.dsResults.Tables[0].Rows[i]["title"].ToString())
</a>

If you still want to use a helper to create an action link with raw HTML for the link text then I don't believe you can use Html.ActionLink. However, the answer to this stackoverflow question describes creating a helper which does this.

I would write the link HTML manually though and use the Url.Action helper which creates the URL which Html.ActionLink would have created:

<a href="@Url.Action("ItemLinkClick", new { itemListID = @Model.dsResults.Tables[0].Rows[i]["ItemListID"], itemPosNum = i+1 })">
    @Html.Raw(Model.dsResults.Tables[0].Rows[i]["title"].ToString())
</a>
离线来电— 2024-12-04 08:50:29

MVCHtmlString.Create 应该可以解决问题。

MVCHtmlString.Create should do the trick.

吃颗糖壮壮胆 2024-12-04 08:50:29

使用下面的操作链接,您不需要在模型中传递 html。让 css 类或内联样式决定 href 的装饰方式。

@Html.ActionLink(Model.dsResults.Tables[0].Rows[i]["title"], "ItemLinkClick", "Controller", new { @class = "underline", style="text-decoration: underline" }, null)

Using the actionlink below you do not need to pass html in the model. Let the css class or inline style determine how the href is decorated.

@Html.ActionLink(Model.dsResults.Tables[0].Rows[i]["title"], "ItemLinkClick", "Controller", new { @class = "underline", style="text-decoration: underline" }, null)
近箐 2024-12-04 08:50:29

在这些情况下,您应该采取其他路径

@{
    string title = Model.dsResults.Tables[0].Rows[i]["title"].ToString(),
           aHref = String.Format("/ItemLinkClick/itemListID={0}&itemPosNum={1}...", 
                       Model.dsResults.Tables[0].Rows[i]["ItemListID"],
                       i+1);
}

<a href="@aHref" class="whatever">@Html.Raw(title)</a>

请记住,Razor 助手可以帮助您,但您仍然可以以 HTML 方式执行操作。

those are the cases that you should take the other path

@{
    string title = Model.dsResults.Tables[0].Rows[i]["title"].ToString(),
           aHref = String.Format("/ItemLinkClick/itemListID={0}&itemPosNum={1}...", 
                       Model.dsResults.Tables[0].Rows[i]["ItemListID"],
                       i+1);
}

<a href="@aHref" class="whatever">@Html.Raw(title)</a>

Remember that Razor helpers, help you, but you can still do things in the HTML way.

撩心不撩汉 2024-12-04 08:50:29

你也可以使用这个:

<a class='btn btn-link' 
   href='/Mycontroler/MyAction/" + item.ID + "'
   data-ajax='true' 
   data-ajax-method='Get' 
   data-ajax-mode='InsertionMode.Replace' 
   data-ajax-update='#Mymodal'>My Comments</a>

You could also use this:

<a class='btn btn-link' 
   href='/Mycontroler/MyAction/" + item.ID + "'
   data-ajax='true' 
   data-ajax-method='Get' 
   data-ajax-mode='InsertionMode.Replace' 
   data-ajax-update='#Mymodal'>My Comments</a>
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文