06/05/2008, 12:02
|
| | | Fecha de Ingreso: julio-2007 Ubicación: Montevideo (Uruguay)
Mensajes: 919
Antigüedad: 17 años, 5 meses Puntos: 13 | |
Re: DataGrid Ya ta, lo resolvi solito :) , gracias igual.
Protected Sub DgInmuebles_ItemDataBound1(ByVal sender As Object, ByVal e As System.Web.UI.WebControls.DataGridItemEventArgs) Handles DgInmuebles.ItemDataBound
If Page.IsPostBack Then
If e.Item.ItemType = ListItemType.Header Then
For Each tc As TableCell In e.Item.Cells
If tc.Controls.Count > 0 Then
If lblCurrentSort.Text.StartsWith(CType(tc.Controls(0 ), _
System.Web.UI.WebControls.LinkButton).CommandArgum ent) Then
Dim img As New System.Web.UI.WebControls.Image
If lblCurrentSort.Text.IndexOf("desc") >= 0 Then
img.ImageUrl = "images/arriba.gif"
Else
img.ImageUrl = "images/abajo.gif"
End If
tc.Controls.AddAt(0, img)
End If
End If
Next
End If
End If
End Sub |