Gridview中的按钮在第一次单击时不会触发。 [英] Button inside Gridview do not fire on the first Time click.

查看:69
本文介绍了Gridview中的按钮在第一次单击时不会触发。的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

Gridview中的按钮在第一次单击(Gridview RowCommand)时不会触发,但在第二次单击工作时。在这里我使用ajax HoverTooltip,这个控件在GridView之外,但HoverTooltip绑定在网格视图RowDataBound(如果我删除RowDataBound上的代码,用于Ajax HoverTooltip比Perfact工作)我如何解决这个???

Button inside Gridview do not fire on the first click(Gridview RowCommand), but on the second click Work. Here i use ajax HoverTooltip, this control outside of GridView,But HoverTooltip Bind on Grid View RowDataBound(if i remove code on RowDataBound For Ajax HoverTooltip Than Perfact Work) How i Solve This ???

推荐答案

至少您可以发布您尝试过的代码,但我想问题可能是您在回发时将数据源绑定到Gridview。

所以编写代码而不是回发。



Atleast you might post the code which you have tried, but i guess the issue may be you bound the datasource to Gridview on postback.
So write the code in not postback.

protected void Page_Load(object sender, EventArgs e)
{
 if (!IsPostBack)
 {
  GridView1.Datasource = DataTable1;
  GridView1.DataBind();
 }
}







请告诉我们状态,如果没有然后发布你的代码。




Just let us know the status, if not then post your code.


这篇关于Gridview中的按钮在第一次单击时不会触发。的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持IT屋!

查看全文
登录 关闭
扫码关注1秒登录
发送“验证码”获取 | 15天全站免登陆