我在我的 asp.net 应用程序中使用广告库代码。我把它改成了通用的,因为我想从我的数据库中下载图片。这意味着所有的实现都在后面的代码中(这是我的一段 C# 代码):
ul.Attributes.Add("class", "ad-thumb-list");
tabs.Controls.Add(ul);
int i = 1;
foreach (Products item in _PicturesPage)
{
ul.Controls.Add(li);
anchor.Attributes.Add("href", item.ImagePath);
image.Attributes.Add("src", "../Images/pictures/thumbs/"+i+".jpg");
image.Attributes.Add("title","A title for 12.jpg");
image.Attributes.Add("alt", "This is a nice, and incredibly descriptive, description of the image");
image.Attributes.Add("class","image3");
li.Controls.Add(anchor);
anchor.Controls.Add(image);
i++;
}
我想知道是否可以拦截其中一个超链接()中的点击?谢谢 :)