Not catching the postback event ?

  •  03-08-2005, 4:16 PM

    Not catching the postback event ?

    Hi
     
    Its strange. I have suddenly lost the postback event. If I make a clean example of including an editor (Editor1) in a aspx and include the following in the codebehind:
    Private Sub Editor1_PostBackCommand(ByVal sender As Object, ByVal e As System.Web.UI.WebControls.CommandEventArgs)
    If String.Compare(e.CommandName, "Save", True) = 0 Then
    Label1.Text = "gem KNAPPEN"
    End If
    End Sub

    Nothing happens. It seems that the event is not fired when hitting the save button.

    Any ideas ?

    regards
    Lars Kohsel

View Complete Thread