in GridView1_RowDataBound
LinkButton LnkAdd = (LinkButton)e.Row.FindControl("LnkAdd");
LnkAdd.Attributes.Add("OnClick", "javascript:return checkAmounts(" + aa.ClientID + "," + bb.ClientID + "," + cc.ClientID + ");");
function checkAmounts(aa, bb, cc)
{
}
i am able to fire the linkbutton click in IE for mozilla it does not work
Thanks
Pavan Kumar
Mark Answer if this fits the need