[ce v4.0] - Capturing the Save Button Event

Last post 11-23-2004, 3:51 PM by cutechat. 1 replies.
Sort Posts: Previous Next
  •  11-23-2004, 3:39 PM 2531

    [ce v4.0] - Capturing the Save Button Event

    Hi. i´m not sure if it´s ok to capture the Save Button event as:

    privatevoid ce1_PostBackCommand(object sender, System.Web.UI.WebControls.CommandEventArgs e)

    {

        // Save  this.ce1.Text here???

    }

    How to ensure that the postback was issued by the Save Button?

    }

    How to ensure that the postback was issued by the Save Button?

    {

        // Save  this.ce1.Text here???

    }

    How to ensure that the postback was issued by the Save Button?

    }

    How to ensure that the postback was issued by the Save Button?

    Regards,
    »»» KenA
  •  11-23-2004, 3:51 PM 2532 in reply to 2531

    Re: [ce v4.0] - Capturing the Save Button Event

    KenA:
    please use this statement to determine :
    if(string.Compare(e.CommandName,"Save",true)==0)
    {
        //ok , fired by the "Save"
    }
View as RSS news feed in XML