使用阵列中的中继器
假设我有一组逗号分隔的列表,需要将其显示到 Repeater
中,我该怎么做?
那么,
List1 = "1, 2, 3, 4"
List2 = "a, b, c, d"
如果我将它们转换为数组,如何将它们绑定到Repeater并获取Repeater中每个列表的值?
我想要获得如下所示的 HTML 输出:
<div>
<span> CONTENT TO LIST 1(0) </span>
<span> CONTENT OF LIST 2(0) </span>
</div>
<div>
<span> CONTENT TO LIST 1(1) </span>
<span> CONTENT OF LIST 2(1) </span>
</div>
.... etc
Supposing I have a set of comma separated lists which I need to display into a Repeater
, how would I?
So,
List1 = "1, 2, 3, 4"
List2 = "a, b, c, d"
If I convert these to arrays, how do I bind them to a Repeater
and get the values of each list within the Repeater
?
I want to get an HTML output that looks like this:
<div>
<span> CONTENT TO LIST 1(0) </span>
<span> CONTENT OF LIST 2(0) </span>
</div>
<div>
<span> CONTENT TO LIST 1(1) </span>
<span> CONTENT OF LIST 2(1) </span>
</div>
.... etc
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
是的,你可以,这是一个简单的例子。
标记:
准备测试代码:
在 Page_Load 中或初始化
Repeater
的位置:输出:
编辑:
要绑定到
Array
,只需分配 < code>Array 到DataSource
,然后使用以下方式访问绑定中的Array
项:Yes you can, here is a simple example.
Markup:
Prep Test Code:
In your Page_Load or where you initialize the
Repeater
:Output:
EDIT:
To bind to an
Array
just assign theArray
to theDataSource
and then access theArray
items in your binding with:在 .net webforms 中,您可以使用
希望有帮助。
in .net webforms you could use
Hope that helps.
我有一个建议aspx:
背后的代码:
I have a suggestion the aspx:
The code behind: