or

| <table |
| Spaghetti Markupcellspacing="0" class="rgMasterTable Css Class" |
| Spaghetti Markupborder="0" id="MainContent_Summary_65af65eb-72ff-4258-b047-6b6e5f742b5f_ctl00" summary="Listing of transactions recorded against Child Account #4." |
| style="Spaghetti Markupwidth:100%;table-layout:auto;empty-cells:show;"> |

protected void Repeater1_PreRender(object sender, EventArgs e) { foreach (RepeaterItem item in Repeater1.Items) { //Dinamically generate DataSource and associate it to Repeater Item ObjectDataSource ods = new ObjectDataSource(); ods.ID = "automaticDS"; ods.TypeName = "MachinaWeb.Services.BO_ConfigurazioneProgramma_Parametro"; ods.SelectMethod = "getAll"; ods.UpdateMethod = "updateParametro"; ods.SelectParameters.Add("_idCultura", DbType.Int64, HiddenFieldIdCultura.Value); ods.SelectParameters.Add("_idAzienda", DbType.Int64, HiddenFieldIdAzienda.Value); ods.SelectParameters.Add("_idGruppoParametro", DbType.Int64, ((HiddenField)item.FindControl("HiddenFieldIdGruppo")).Value); RadGrid radGrid = (RadGrid)item.FindControl("RadGridParametriConfigurazione"); radGrid.DataSource = ods; radGrid.DataBind(); } }