我有一个名为“DashboardUserControl.ascx”的用户控件
它有一个功能:
public void setPagination(Boolean pagination)
{
this.DashboardGridView.AllowPaging = pagination;
}
我还有另外两个页面,通过拖放插入了该用户控件:
MyDashboard.aspx:我想从此页面将用户控件的分页设置为“true”。
SharedDashboard.aspx:我想将用户控件的分页设置为“false”。
这该怎么做?