Click here to Skip to main content
15,893,564 members
Please Sign up or sign in to vote.
0.00/5 (No votes)
See more:
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 ???
Posted

1 solution

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.

C#
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.
 
Share this answer
 
Comments
Avadhesh yadav 25-May-15 8:04am    
i have already done code Inside IsNot Postback

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900