Ho questo codice
codice:<asp:repeaterid="Repeater1" OnItemDataBound="R1_ItemDataBound" OnItemCommand="R1_OnItemCommand" runat="server"> <itemtemplate> <tr> <td><%# Container.DataItem("Giorno")%></td> <td><%# Container.DataItem("Ora")%></td> <td><%# Container.DataItem("Giornoora")%></td> <td><asp:LabelText='<%# DataBinder.Eval(Container.DataItem, "Giornoora") %>'Runat="server"/></td> <td><asp:ButtonID="removeEmail"CommandName="CancellaPrenotazione"CommandArgument=<%#DataBinder.Eval(Container.DataItem, "id") %> runat="server"Text="X"ToolTip="Cancella Prenotazione"/></td> <td><asp:imagebuttonID="CancellaPrenotazione"imageURl="/images/delete.jpg"height="20"width="20"CommandName="CancellaPrenotazione"CommandArgument=<%#DataBinder.Eval(Container.DataItem, "id") %> runat="server"ToolTip="Cancella Prenotazione"/></td> </tr> </itemtemplate> </asp:repeater>
poi ho
codice:Sub R1_ItemDataBound(ByVal sender AsObject, ByVal e As System.Web.UI.WebControls.RepeaterItemEventArgs) ... EndSub
nella sub dovrei fare questo controllo: se giornoora>data corrente allora imagebutton non deve essere visibile.
Non so come fare. Potete aiutarmi? Vi ringrazio anticipatamente