protected void chkIncluded_CheckedChanged(object sender, EventArgs e) { CheckBox checkbox = (CheckBox)sender; GridViewRow gridViewRow = (GridViewRow)checkbox.Parent.Parent; string fileName = gridViewRow.Cells[0].Text; AutoUpdateManager.SetPackageInclusionForPublication(PublicationID, fileName, checkbox.Checked); BindData(); }
public void SetPackageInclusionForPublication(int publicationID, string packageName, bool isIncluded) { CheckAccess(); AutoUpdateManager.SetPackageInclusionForPublication(publicationID, packageName, isIncluded); }