如何将多个 lambda 值与 Html.TextBoxFor 一起写入
how to write multiple lambda values together with Html.TextBoxFor
我尝试在 MVC 中使用 textboxfor 显示出生日期,如 22.10.1984,但我不知道如何将它们放在一起?
@Html.TextBoxFor(model => model.DateOfBirthDay + "." + model => model.DateOfBirthYear + "." + model => model.DateOfBirthYear)
如果您不想按照评论中的建议更改您的模型,您可以这样做:
@Html.TextBoxFor(model => string.Format("{0}.{1}.{2}", model.DateOfBirthDay, model.DateOfBirthMonth, model.DateOfBirthYear))
我尝试在 MVC 中使用 textboxfor 显示出生日期,如 22.10.1984,但我不知道如何将它们放在一起?
@Html.TextBoxFor(model => model.DateOfBirthDay + "." + model => model.DateOfBirthYear + "." + model => model.DateOfBirthYear)
如果您不想按照评论中的建议更改您的模型,您可以这样做:
@Html.TextBoxFor(model => string.Format("{0}.{1}.{2}", model.DateOfBirthDay, model.DateOfBirthMonth, model.DateOfBirthYear))