Re: Not catching the postback event ?

  •  03-09-2005, 11:38 AM

    Re: Not catching the postback event ?

    The save button causes a postback but the sub below is not catched ????
     

    PrivateSub Editor1_PostBackCommand(ByVal Sender AsObject, ByVal e As System.Web.UI.WebControls.CommandEventArgs) Handles Editor1.PostBackCommand

    IfString.Compare(e.CommandName, "Save", True) = 0 Then

    savedata()

    'dataBinder()

    EndIf

    EndSub
View Complete Thread