You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

16 lines
625 B

<%@ Page Language="VB" Debug="true"%>
<%@ Register TagPrefix="ed" Namespace="OboutInc.Editor" Assembly="obout_Editor" %>
<script runat="server">
Public Sub Page_Load(sender As Object, e As EventArgs)
Dim editor As New OboutInc.Editor.Editor()
editor.ID = "editor"
editor.PathPrefix = "Editor_data/"
editor.Content = "<span style='color:blue;'>Hello... Good Bye...</span>"
editor.Appearance = Editor.AppearanceType.lite
editor.Submit = false
editor.ImageBrowse = "myImageBrowse.aspx"
editor.FlashBrowse = "myFlashBrowse.aspx"
editor.MediaBrowse = "myMediaBrowse.aspx"