在asp.net中等效于<%= expression%>的方法?

Sco*_*ein 1 asp.net-mvc

这里有总的菜鸟问题,但没有通过搜索找到答案.

<%= expression%>的方法等价物是什么?

我想替换这个:

<%
 foreach (var intem in IE) {
%>
  <%= Ajax.ActionLink(item,...) %>
<% } %>
Run Code Online (Sandbox Code Playgroud)

有:

<%
 foreach (var intem in IE) {
    SomeOutputCall(Ajax.ActionLink(item,...));
} 
%>
Run Code Online (Sandbox Code Playgroud)

Tru*_*der 10

我想好老Response.Write会做的伎俩.