我有以下代码打印一些列表。该列表正在打印,但整数变量 i 的值未打印。
<%
int i = 1;
try
{
foreach (LElement r in LElements)
{
Response.Write("<br/><div style=\"font-size:small\">");
Response.Write("Element "+i+"="+r.name);
Response.Write("</div>");
i++;
}
Response.Write("<br/>");
}
catch (Exception)
{
Response.Write("Error");
}
%>
它只是打印
元素 = ABC
元素 = XYZ
等等...
生成的 HTML 有点像这样:
<br/><div style="font-size:small">Element = ABC</div>
<br/><div style="font-size:small">Element = XYZ</div>
<br/><div style="font-size:small">Element = PQR</div><br/>
请告诉我这段代码有什么问题?