1

我不断收到编译错误,找不到匹配的重载方法。我尝试了几种方法(变量,variable.toString)。下面是最新的尝试。

当我单击日历上的日期(例如:2)时,ActionLink 应该发送查询字符串:“Index?day=2”。

@{ string dayAsString = startCount.ToString();}
<div><span>@Html.ActionLink(@startCount.ToString, "Index?day=" + dayAsString , "Event")</span></div>
4

2 回答 2

1

做这个

<div>
    <span>
        @Html.ActionLink(startCount.ToString(), "Index", new { day = startCount })
    </span>
</div>

day最后一个参数创建一个具有属性和值的匿名对象startCount。ActionLink 知道使用属性名称和属性值将其转换为查询字符串。

更多细节在这里http://msdn.microsoft.com/en-us/library/dd492936.aspx

编辑:

如果要针对特定​​控制器,请执行此操作

@Html.ActionLink(startCount.ToString(), "Index", new { controller = "Event", day = startCount })

你也可以这样做

@Html.ActionLink(startCount.ToString(), "Index", "Event", new { day = startCount }, null)

但我不喜欢null作为参数传递。

这是所有重载的列表:http: //msdn.microsoft.com/en-us/library/dd505040.aspx

您也可以在智能感知中循环。

于 2012-04-19T15:49:50.930 回答
0

这应该工作

@Html.ActionLink(@startCount.ToString,"Index","Yourcontroller",new { day=@startCount.ToString()} , null)

用您的控制器名称替换 Yourcontroller

于 2012-04-19T16:07:04.807 回答