Re: Problem on content styling

  •  02-24-2010, 9:32 PM

    Re: Problem on content styling

    Hi,
     
    Here is the screen shot.
     
     
    Below is my code:
     

    <%

    Option Explicit

    %>

    <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">

    <html xmlns="http://www.w3.org/1999/xhtml">

    <head>

    <title>My Events</title>

    <meta name="description" content="Events">

    <meta name="robots" content="noindex, nofollow" />

    <meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" />

    <meta http-equiv="content-language" content="en-gb" />

    </head>

    <!--#include file="../../cuteeditor_files/include_CuteEditor.asp" -->

    <body>

    <h2>Submit an Event</h2>

    <form>

    <%

     

    Dim editor

    Set editor = New CuteEditor

     

    editor.ID = "eventdesc"

    editor.ConfigurationPath = "../../CuteEditor_Files/Configuration/EHSDefault.config"

    editor.FilesPath = "../../CuteEditor_Files"

    editor.HelpUrl = "../../CuteEditor_Files/Help/default.htm"

    editor.EditorBodyStyle="font-size:12px;"

    editor.BreakElement = "P"

    editor.showhtmlmode = True

    editor.showpreviewmode = True

    editor.EditorOnPaste = "PasteText"

    editor.Text = "testing note"

    editor.Width = 200

    editor.Height = 100

    editor.Draw()

    %>

     

    </form>

    </body>

    </html>

View Complete Thread