如何在随机listview行ASP.NET 4中插入横幅图像?

时间:2012-03-11 23:43:07

标签: asp.net listview rows banner

如何在列表视图中的随机行中插入横幅图像,而不会影响ASP.NET 4中的其他数据行

1 个答案:

答案 0 :(得分:1)

这将为您获得一个随机数:

Random random = new Random();

int maxValue = (number of rows in your Data Source);

int r = random.Next(maxValue);

然后在ListView.ItemDataBound事件中,当index = maxValue - 1时,显示图片。