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
636 B

<%@ Page Language="C#" Debug="true"%>
<%@ Register TagPrefix="ed" Namespace="OboutInc.Editor" Assembly="obout_Editor" %>
<script runat="server">
void Page_Load(object o, EventArgs e)
{
OboutInc.Editor.Editor editor = 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";