public DataTable StoreProcAnkit(String storeProcedure, String cust_ID) { try { LogManager.WriteMessage("Invoking SP_B2B_Jeweler_Admin", "Tracer", LogLevels.Debug); DataSet ds = SqlHelper.ExecuteDataset (WebConfigurationManager.ConnectionStrings["Customer"].ConnectionString, storeProcedure, cust_ID); return ds.Tables[0]; } catch (Exception ex) { throw new FactoryException("failed to retrieve the store B2B Procedure", ex); } } // need the code to type on button event protected void Button3_Click(object sender, EventArgs e) { System.Web.Profile.ProfileBase ankit = new System.Web.Profile.ProfileBase(); AdminFactory t = new AdminFactory(); TextBox3.Text = t.StoreProcAnkit(); //how do I call the contents of the dataset here ??? //I appreciate any help. }