首页 诗词 字典 板报 句子 名言 友答 励志 学校 网站地图
当前位置: 首页 > 教程频道 > 网站开发 > asp.net >

repeater中LinkButton的链接事件,该如何解决

2012-07-28 
repeater中LinkButton的链接事件我在repeater里用了个LinkButton后台ItemCommand事件里给它的PostBackUrl

repeater中LinkButton的链接事件
我在repeater里用了个LinkButton
后台ItemCommand事件里给它的PostBackUrl一个链接
可每次要点两次才能链接到那个页面
这是什么原因啊
有没有解决办法?

[解决办法]
LinkButton Link = (LinkButton)e.Item.FindControl("Link");

 if (条件)
 {
Response.Redirect("sjsDetail.aspx?code=" + lb_code.Text);
//Response.Write("<script>window.open('要跳转的页面');</script>");
 }

热点排行