Copy all style attributes from a master GridView to another GridView

protected void GridView1_Init(object sender, System.EventArgs e)
{
 GridView ThisGridView = sender;
 ThisGridView.ApplyStyle(MasterGridView.ControlStyle);
}

No comments:

Post a Comment