Re: After certain lengt of text in editor, form cannot be submited.

  •  03-15-2004, 9:37 PM

    Re: After certain lengt of text in editor, form cannot be submited.

    The online demo works!...but I was pressing the "save" button and not a submit button. If I test with a submit button, it can't work if I put it to much text. No kidding! Can u try it with a submit button?

     

    My code is straightforward:

     

    [CODE SAMPLE]

    Dim editor Set editor = New ASPEdit 'Create a new editor class object editor.ID = "Editor1" 'Set the ID of this editor class editor.Text = FBody 'Set the initial HTML value of editor control editor.FilesPath = "ASPEdit_Files" editor.ImageGalleryPath = "/Uploads" editor.MaxImageSize = 50 editor.AutoConfigure = "Simple" editor.DisableItemList = "Save,ImageGallery,Help" editor.StyleDropDownMenuNames = temp_styledropdownMenuNames editor.StyleDropDownMenuList = temp_styledropdownMenuList editor.CodeSnippetDropDownMenuNames = temp_snippetDropDownMenuNames editor.CodeSnippetDropDownMenuList = temp_snippetDropDownMenuList editor.ImagesDropDownMenuNames = temp_imagesDropDownMenuNames editor.ImagesDropDownMenuList = temp_imagesDropDownMenuList editor.LinksDropDownMenuNames = temp_linksDropDownMenuNames editor.LinksDropDownMenuList = temp_linksDropDownMenuList editor.StyleSheetPath = "Royalblue.css" editor.ShowLogo=False editor.Width = 549 editor.Height = 300

     

    <  form   >

    < tr >

     < td width="100%" >

    <% editor.draw() %>

    < /td >

    < /tr >

    <  input type="submit" value=" Save " name="B3" class="button" onfocus="save(Editor1)" >

    <   /form   >

     

    [END CODE SAMPLE ]

     

    Please help!..

View Complete Thread