本文介绍了自动递增的asp控件ID的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
我该怎么办相当于
传统的ASP:
<%
for int_linkCTR = 1 to 5
%>
<a href="somelink.com" ID="Hyperlink<%= int_linkCTR %>" >Link<%= int_linkCTR %></a>
<%
next
%>
C#
<% for (int int_linkCTR = 1; int_linkCTR <= 3; int_linkCTR++) { %>
<asp:HyperLink ID="link<%# int_linkCTR %>" runat="server">
HyperLink<%# int_linkCTR %>"
</asp:HyperLink>
<% } %>
我想通过循环,并根据我的链接数创建新的超链接
I want to loop through and create new hyperlinks based on my link count
推荐答案
一个的是你在找什么。
A Repeater
is what you are looking for.
- http://www.w3schools.com/aspnet/aspnet_repeater.asp
- http://blogs.sitepoint.com/asp-net-repeater-control/
这篇关于自动递增的asp控件ID的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!