i'm reading the values of listview with datasource with
foreach (ListViewDataItem li in ListView6.Items)
{
DataView dvSql = (DataView)sql_ds_portefolio_items.Select(DataSourceSelectArguments.Empty);
foreach (DataRowView drvSql in dvSql)
{
}
}
but it is running twice
Go to the complete details ...