怎么限制gridview每行的显示字数并且每行要添加超链接??? 5
1个回答
展开全部
给绑定字段设置式样控制显示字数:
.style
{
width:100px;
overflow: hidden;
text-overflow: ellipsis;
white-space: nowrap
}
//添加超级链接
protected void Page_Load(object sender, EventArgs e)
{
BIndGridView1();
foreach( GridViewRow r in GridView1.Rows)
{
r.Attributes.Add("onclick", "alert(1);");//这里alert可以换成window.open()就是达到你要的效果
}
}
.style
{
width:100px;
overflow: hidden;
text-overflow: ellipsis;
white-space: nowrap
}
//添加超级链接
protected void Page_Load(object sender, EventArgs e)
{
BIndGridView1();
foreach( GridViewRow r in GridView1.Rows)
{
r.Attributes.Add("onclick", "alert(1);");//这里alert可以换成window.open()就是达到你要的效果
}
}
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询