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.1 KiB

<%@ Page Language="VB" Trace="false"%>
<!-- Register Flyout component -->
<%@ Register TagPrefix="obout" Namespace="OboutInc.Flyout2" Assembly="obout_Flyout2_NET"%>
<%@ Register TagPrefix="ed" Namespace="OboutInc.Editor" Assembly="obout_Editor" %>
<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">
Public Sub Page_Load(sender As Object, e As EventArgs)
If Not Page.IsPostBack Then
editor.Content="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>"
End If
End Sub
</script>