我正在用 ASP.NET 编写代码,而且我是新手。我有两个数组,一个是名称,另一个是 ID。
我想创建一个表,其中有一列中的名称和两个依赖于另一列中的 id 的链接(编辑到这个特定的名称链接,删除到这个特定的名称链接)。
在 PHP 中,我会这样做:
<table>
<tr>
<td>Title</td>
<td>Actions</td>
</tr>
<?php
$names = Array("a", "b", "c");
$ids = Array("1", "2", "3");
for($i = 0; $i < 3; $i++):
?>
<tr>
<td>
<?php echo $names[$i]; ?>
</td>
<td>
<a href="edit.php?id=<?php echo $ids[$i]; ?>">Edit</a>
<a href="delete.php?id=<?php echo $ids[$i]; ?>">Delete</a>
</td>
</tr>
<?php endforeach; ?>
</table>
我知道您可以在 ASP.NET 中编写非常相似的内容,但我必须使用 RadGrids。非常感谢您的帮助!
编辑:如果重要,我将数据作为 XML 获取,并选择将其解析为 2 个数组。如果它更容易,我可以用不同的方式解析它。