我有这个代码,我有这个错误 在这个上下文中不支持代码块
<%
for (int i = 0; i < 5; i++)
{
%>
<asp:DropDownList runat="server" ID="<%=i %>">
<asp:ListItem><%i.ToString(); %></asp:ListItem>
</asp:DropDownList>
<%
}
%>