在ASP.NET中 脚本输出问题
<%if(GetList().Count>0){for(inti=0;i<GetList().Count;i++){%><spanstyle="float:right;"...
<%
if (GetList().Count > 0)
{
for (int i = 0; i < GetList().Count; i++)
{
%>
<span style=" float:right;"> <asp:Label ID="lbllou" runat="server" Text='<% i %>'></asp:Label>#</span>
<%
}
}
%>
其中:GetList()是一个集合,在lbllou中怎样把for循环中的 I 这个值输出!
请教了!!!! 展开
if (GetList().Count > 0)
{
for (int i = 0; i < GetList().Count; i++)
{
%>
<span style=" float:right;"> <asp:Label ID="lbllou" runat="server" Text='<% i %>'></asp:Label>#</span>
<%
}
}
%>
其中:GetList()是一个集合,在lbllou中怎样把for循环中的 I 这个值输出!
请教了!!!! 展开
2个回答
2010-12-28
展开全部
<span style=" float:right;"> <%=i%>#</span>
就行了,等于:
<span style=" float:right;"> <%Response.Write(i)%>#</span>
就行了,等于:
<span style=" float:right;"> <%Response.Write(i)%>#</span>
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询