Hi,
May i know what is the function calling by InitInsertButton when we click on it?
if(e.Item is GridCommandItem)
{
LinkButton LinkButton1 = e.Item.FindControl("InitInsertButton");
LinkButton1.Enabled = false;
LinkButton LinkButton2 = e.Item.FindControl("RebindGridButton");
LinkButton2.Enabled = false;
}
I want to know its function name so that i can call it again after i successful inserted a new row, and allows me to insert new item again wihout click on the "add new record" link.
Please help.
Thanks.
Regards,
Soo
                                May i know what is the function calling by InitInsertButton when we click on it?
if(e.Item is GridCommandItem)
{
LinkButton LinkButton1 = e.Item.FindControl("InitInsertButton");
LinkButton1.Enabled = false;
LinkButton LinkButton2 = e.Item.FindControl("RebindGridButton");
LinkButton2.Enabled = false;
}
I want to know its function name so that i can call it again after i successful inserted a new row, and allows me to insert new item again wihout click on the "add new record" link.
Please help.
Thanks.
Regards,
Soo