あなたのコード:
@Html.ActionLink(string.Format("{0:HH\\:mm}", schedule.RecurrenceStart), "EventOverview", "BaseEvent",
new { id = schedule.BaseEvent.OID, type = schedule.BaseEvent.XPObjectType},
new Dictionary<string, object>
{
{"session", schedule.SessionId},
{"hall",schedule.HallId},
{"client",schedule.BasePlace.PremieraClientId}
})
@Tommy が「セッション」、「ホール」、「スケジュール」が queryStirng パラメータであると言ったようにリンクを生成することを意図している場合、コードは次のようになります。
@Html.ActionLink(string.Format("{0:HH\\:mm}", "schedule.RecurrenceStart"), "EventOverview", "BaseEvent",
new { id = schedule.BaseEvent.OID, type = schedule.BaseEvent.XPObjectType,
session= schedule.SessionId, hall =schedule.HallId, client =schedule.BasePlace.PremieraClientId},
null)
それ以外の場合、'session'、'hall'、'schedule' を html 属性として (指定されたコードに従って) 必要な場合は、2 つの一致するActionLinkメソッド シグネチャがあります。
public static MvcHtmlString ActionLink(
this HtmlHelper htmlHelper,
string linkText,
string actionName,
string controllerName,
Object routeValues,
Object htmlAttributes
)
と
public static MvcHtmlString ActionLink(
this HtmlHelper htmlHelper,
string linkText,
string actionName,
string controllerName,
RouteValueDictionary routeValues,
IDictionary<string, Object> htmlAttributes
)
それらのいずれかを選択する必要があります。つまり、パラメーター 'routeValues' と 'htmlAttributes' の両方を匿名オブジェクト (1 つ目) または型指定されたオブジェクトとして送信します。'routeValues' には 'RouteValueDictionary'、'htmlAttributes' にはIDictionary<string, Object>
' 指定されたコードは最初のものと一致したため、タイプの「htmlAttributes」がIDictionary<string, Object>
オブジェクトとして扱われ、誤ったタグが生成されます。
正しいコードは次のとおりです。
@Html.ActionLink(linkText: string.Format("{0:HH\\:mm}", "schedule.RecurrenceStart"), actionName: "EventOverview", controllerName: "BaseEvent",
routeValues: new { id = schedule.BaseEvent.OID, type = schedule.BaseEvent.XPObjectType },
htmlAttributes: new
{
session = schedule.SessionId,
hall = schedule.HallId,
client = schedule.BasePlace.PremieraClientId
} )
または
@Html.ActionLink(string.Format("{0:HH\\:mm}", "schedule.RecurrenceStart"), "EventOverview", "BaseEvent",
new RouteValueDictionary(new { id = schedule.BaseEvent.OID, type = schedule.BaseEvent.XPObjectType }),
new Dictionary<string, object>
{
{"session", schedule.SessionId},
{"hall", schedule.HallId},
{"client", schedule.BasePlace.PremieraClientId}
})