Step 1: A Master page Int and PreLoad.
Step 2: An ASPX web form page Int,PreLoad and Load.
Step 3: A master page Load
Step 4: User control inside the page Int, preLoad, Load.
Step 5: Button to fire some code in a btnOK_Click event.
private DataSet CreateClone(DataSet myDataSet, string myTable, string myCol, decimal myValue) { DataSet myCloneDS; myCloneDS = myDataSet.Clone();DataRow[] copyRows = myDataSet.Tables[myTable].Select(myCol + " = " + myValue); DataTable custTable = myCloneDS.Tables[myTable]; //Insert into all filtered row data into the cloned Dataset foreach (DataRow copyRow in copyRows) custTable.ImportRow(copyRow); return myCloneDS; }