让BulletedList的链接中转自己规定
protected void BulletedList3_DataBound(object sender, EventArgs e)
{
this.BulletedList3.Items[0].Value = "http://www.baidu.com/";
}
若有多个值用for循环
然后再绑定一下
protected void BulletedList3_DataBound(object sender, EventArgs e)
{
this.BulletedList3.Items[0].Value = "http://www.baidu.com/";
}
若有多个值用for循环
然后再绑定一下