我想在满足某些条件时向Gridview添加链接和图像。
我认为可以使用下面的代码来完成此操作,但是对于“去哪里我很困惑,我知道其中一些需要放在\”,但我不确定在哪里。目前无法编译,请有人可以帮我吗?
我还研究了使用图像按钮,但是这种情况似乎更复杂,因为按钮应仅出现在符合条件的行中。如果您认为更好,我愿意使用该方法。
if(line.SuperSessionIndicator == "1" || line.ErrorType =="S" )
{
lbl3.Text = "<aref=\"https://stackoverflow.com/questions/7167839/aspimage-with-link \">"<img url='Images/Prop.png\'/>\"\"<a/>";
}
答案 0 :(得分:1)
您需要使用以下代码将其正确设置。
lbl3.Text = "<a href=\"https://stackoverflow.com/questions/7167839/aspimage-with-link\"><img src='Images/Prop.png\'/><a/>";
上面C#代码产生的标记如下所示,
<a href="https://stackoverflow.com/questions/7167839/aspimage-with-link"><img src='Images/Prop.png'/><a/>