Remove div tags

Last post 08-04-2010, 9:31 AM by tgrambo. 2 replies.
Sort Posts: Previous Next
  •  07-26-2010, 12:36 PM 62717

    Remove div tags

    I am using the editor to allow for the sending of emails. The editor automatically enters in div tags around each line of text which causes the email not to be displayed as it does in the Preview.
     
    Is there a way to make it so the div tags or any other default tags are added to the text?
     
    Thank you,
    Tyler
  •  07-26-2010, 5:38 PM 62720 in reply to 62717

    Re: Remove div tags

    With Cute Editor, you can defines what happens when the "enter" key is pressed in the editor in the BreakElement enumeration.This enumeration has three values: Div, Br and P. 
    You can add one of the following two lines and have a test:
         Editor1.BreakElement  = BreakElement.Br;
    or
         Editor1.BreakElement  = BreakElement.P;
     
     
    Hope it helps.
     
    Regards,
    Eric
  •  08-04-2010, 9:31 AM 63077 in reply to 62720

    Re: Remove div tags

    I will use the paragraph tag then. I would have liked to have not used any tag by default but will use what I'm given.
     
    Thank you for your reply
     
     
View as RSS news feed in XML