Editor1.ConfigurationPath

  •  04-09-2009, 8:58 AM

    Editor1.ConfigurationPath

    I try to use the Save button and OnPostBackCommand.........
     
    I set i my Page_Load:
    Editor1.ConfigurationPath = "~/CuteSoft_Client/CuteEditor/Configuration/AutoConfigure/MyTool.config"
     
    When i do that the OnPostBackCommand="Editor1_PostBackCommand" not works for me. If i set <CE:Editor id="Editor1" AutoConfigure="Minimal" it works?
     
    and............................
     
    When i use " If Page.IsValid() Then" in OnPostBackCommand like:
     Public Sub Editor1_PostBackCommand(ByVal Sender As Object, ByVal e As System.Web.UI.WebControls.CommandEventArgs)
        If Page.IsValid() Then
     
    I have System.Web.HttpException: Page.IsValid cannot be called before validation has taken place.
    What do i wrong?
View Complete Thread