hi is it possible to bind gridview inside of usercontrol from content page, i开发者_Python百科f so how?
Yes, the easiest way would be to expose the bind in the user control and then call it from your page.
//in user control, add this method
public void BindGrid()
{
gvInnerGrid.DataBind();
}
//on your page
userControl.BindGrid();
精彩评论