<% using (Ajax.BeginForm("EditOrganizationMeta", new AjaxOptions { UpdateTargetId = "\<%= OrganizationMeta.vcr_MetaKey + Lang.int_LangId%>" }))
开发者_如何学编程 { %>
i want to specify name after UpdateTargetid ,how will i do that?
You're already in a code block. Just use the variables normally.
<% using (Ajax.BeginForm("EditOrganizationMeta",
new AjaxOptions {
UpdateTargetId = OrganizationMeta.vcr_MetaKey
+ Lang.int_LangId
}))
{ %>
You can initialize multiple items in a collection by simply providing a comma between the items.
new AjaxOptions {
UpdateTargetId = "\<%= OrganizationMeta.vcr_MetaKey + Lang.int_LangId%>",
Name = "whatever"
}
精彩评论