本文介绍了剃刀MVC 3 RC2 - ActionLink的的WebGrid与动态文本的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我输出一个ActionLink的,在的WebGrid,具有动态链接文本,我可以得到它的工作是如下的唯一方法:

I'm outputting an Actionlink, in a WebGrid, with Dynamic link text and the only way I can get it to work is as follows:

Grid.Column(header: "Subject", columnName: "Message.Subject", format:(item) => Html.ActionLink(((object)item.Message.Subject).ToString(), "Message", new {Id = 12345 }))

有没有人有这样做的更好的办法?

Does anyone have a better way of doing this?

推荐答案

没有太大的不同。

Grid.Column(
    header: "Subject",
    columnName: "Message.Subject",
    format: (item) => Html.ActionLink(
        (string)item.Message.Subject, "Message", new { Id = 12345 }
    )
)

请参阅:How做一个MVC 3的WebGrid与复选框列?

这篇关于剃刀MVC 3 RC2 - ActionLink的的WebGrid与动态文本的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

10-28 13:23