我有这样的 mvc actionLink
@Html.ActionLink("Delete", "Delete",
new { id = item.Id },
new { onclick = "return confirm('Are you sure you wish to delete this article?');" })
现在,我想将@Localized.AreYouSure
字符串放入返回确认部分。我怎样才能做到这一点。
我有这样的 mvc actionLink
@Html.ActionLink("Delete", "Delete",
new { id = item.Id },
new { onclick = "return confirm('Are you sure you wish to delete this article?');" })
现在,我想将@Localized.AreYouSure
字符串放入返回确认部分。我怎样才能做到这一点。