save command using Full.config

  •  02-09-2009, 2:06 PM

    save command using Full.config

    I am using .config file to set the toolbar and need help with the save image button (<item type="image" name="Save" postback="True" />).
     
    Is it practicably to use:
     
    ---------------------------
     Protected Sub btnSaveChange_Command(ByVal sender As Object, ByVal e As CommandEventArgs)
      Dim CommandName As String = CType(e, System.Web.UI.WebControls.CommandEventArgs).CommandName.ToString()
       If CommandName = "SaveEditPage" Then......
    --------------------------
     
    to save text from the editor to my database?
     
    I dont have it to work when i save.........
View Complete Thread