Horje
how to access asp button of gridview Code Example
how to access asp button of gridview
protected void gvPayemenDetailNew_RowDataBound(object sender, 
GridViewRowEventArgs e)
{
foreach (GridViewRow row in gvPayemenDetailNew.Rows)
{
    if (row.RowType == DataControlRowType.DataRow)
    {
        Button btn = row.FindControl("btnGenNew") as Button;
        if (PayStatus == "Approved")
        {
            btn.Enabled = true;
        }
    }
}            
}




Csharp

Related
.net 4.5 use tls 1.2 Code Example .net 4.5 use tls 1.2 Code Example
F# Code Example F# Code Example
android jaca how to pass a imageurl in a recyclerview adapter Code Example android jaca how to pass a imageurl in a recyclerview adapter Code Example
force asp.net https Code Example force asp.net https Code Example
c# if else Code Example c# if else Code Example

Type:
Code Example
Category:
Coding
Sub Category:
Code Example
Uploaded by:
Admin
Views:
9