我有一个复选框列表。当我选中一个复选框时,该值将出现在表格中。现在我想要该值以及我检查的每个值以使其成为链接。这是我获取选中值的代码:
foreach (ListItem item in check.Items)
{
if (item.Selected)
{
TableRow row = new TableRow();
TableCell celula = new TableCell();
celula.Style.Add("width", "200px");
celula.Style.Add("background-color", "red");
//celula.RowSpan = 2;
celula.Text = item.Value.ToString();
row.Cells.Add(celula);
this.tabel.Rows.Add(row);
现在我希望 item.value 使其成为链接..我在 asp.net 应用程序中使用 c#