Torna al Thread
protected void GvAttivita_RowDataBound(object sender, GridViewRowEventArgs e)
{
if (e.Row.RowIndex >= 0)
{
SqlDataSource SdsStato = (SqlDataSource)e.Row.Cells[6].TemplateControl.FindControl("SdsStato");
string StrSql = "Select * From " + CodApplicazione + "TipoStatoPlanner where SpAgenzia = '" + Convert.ToString(Session["CodAgenzia"]).Trim() + "'";
SdsStato.SelectCommand = StrSql;
SdsStato.DataBind();
}
}