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
2.0 KiB

<%@ Page Language="C#" Trace="false"%>
<%@ Register TagPrefix="ed" Namespace="OboutInc.Editor" Assembly="obout_Editor" %>
<%@ Register TagPrefix="owd" Namespace="OboutInc.Window" Assembly="obout_Window_NET"%>
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<title>obout ASP.NET HTML Editor example</title>
<link rel="stylesheet" href="example_styles/style.css" />
<script runat="server">
void Page_Load(object o, EventArgs e)
{
if(!Page.IsPostBack)
{
ContentDiv.Text="This is a new <SPAN style=\"FONT-WEIGHT: bold\">Document</SPAN> at this time<TABLE style=\"BORDER-TOP: rgb(0,0,0) 1px solid; BORDER-LEFT: rgb(0,0,0) 1px solid; WIDTH: 320px; HEIGHT: 0px\" cellSpacing=0 cellPadding=0><TBODY><TR><TD style=\"BORDER-RIGHT: rgb(0,0,0) 1px solid; BORDER-BOTTOM: rgb(0,0,0) 1px solid\"><BR></TD><TD style=\"BORDER-RIGHT: rgb(0,0,0) 1px solid; BORDER-BOTTOM: rgb(0,0,0) 1px solid\"><BR></TD><TD style=\"BORDER-RIGHT: rgb(0,0,0) 1px solid; BORDER-BOTTOM: rgb(0,0,0) 1px solid\"><BR></TD><TD style=\"BORDER-RIGHT: rgb(0,0,0) 1px solid; BORDER-BOTTOM: rgb(0,0,0) 1px solid\"><BR></TD></TR><TR><TD style=\"BORDER-RIGHT: rgb(0,0,0) 1px solid; BORDER-BOTTOM: rgb(0,0,0) 1px solid\">&nbsp;<IMG title=\"\" alt=\"\" hspace=0 src=\"images/examples/Cindy.gif\" align=textTop border=0></TD><TD style=\"BORDER-RIGHT: rgb(0,0,0) 1px solid; WIDTH: 100px; BORDER-BOTTOM: rgb(0,0,0) 1px solid\"><BR></TD><TD style=\"BORDER-RIGHT: rgb(0,0,0) 1px solid; WIDTH: 50px; BORDER-BOTTOM: rgb(0,0,0) 1px solid\">ffff<br></TD><TD style=\"BORDER-RIGHT: rgb(0,0,0) 1px solid; WIDTH: 200px; BORDER-BOTTOM: rgb(0,0,0) 1px solid\"><BR></TD></TR><TR><TD style=\"BORDER-RIGHT: rgb(0,0,0) 1px solid; BORDER-BOTTOM: rgb(0,0,0) 1px solid\"><BR></TD><TD style=\"BORDER-RIGHT: rgb(0,0,0) 1px solid; WIDTH: 50px; BORDER-BOTTOM: rgb(0,0,0) 1px solid\"><BR></TD><TD style=\"BORDER-RIGHT: rgb(0,0,0) 1px solid; BORDER-BOTTOM: rgb(0,0,0) 1px solid\"><BR></TD><TD style=\"BORDER-RIGHT: rgb(0,0,0) 1px solid; BORDER-BOTTOM: rgb(0,0,0) 1px solid\"><BR></TD></TR></TBODY></TABLE><BR>Table sample<BR>";
}
}