Problème pour trier une dataview

Problème pour trier une dataview - ASP - Programmation

Marsh Posté le 27-03-2005 à 18:52:42    

Bonjour,  
Voici mon code qui ne fonctionne pas :pfff: :    
 (la méthode Sort_Grid est déclenchée quand on clic sur un en-tête de colonne d'un datagrid)
 
private void Sort_Grid(object source, System.Web.UI.WebControls.DataGridSortCommandEventArgs e)  
  {  
   dataSet1=(DataSet)Cache["KNOWLEDGE_BASE"];  
    DataTable dt = dataSet1.Tables[0];  
   DataView sortView= new DataView(dataSet1.Tables[0]);  
   sortView.Sort=e.SortExpression;  
    DataGrid1.DataSource=sortView;  
   DataGrid1.DataBind();  
  }

Reply

Marsh Posté le 27-03-2005 à 18:52:42   

Reply

Marsh Posté le 28-03-2005 à 03:09:23    

je suis pas expert dans ce domaine. Mais il manquerait pas un refresh quelque part ?


---------------
What if I were smiling and running into your arms? Would you see then what I see now?  
Reply

Marsh Posté le 28-03-2005 à 03:18:56    

pas besoin de faire 2 topics...
 
http://forum.hardware.fr/hardwaref [...] 6869-1.htm


---------------
What if I were smiling and running into your arms? Would you see then what I see now?  
Reply

Sujets relatifs:

Leave a Replay

Make sure you enter the(*)required information where indicate.HTML code is not allowed