can I include the editor as a response.write

  •  11-16-2004, 2:59 PM

    can I include the editor as a response.write

    is there a way to do this?
     
    <%@ Page Language="vb"  ValidateRequest="False" %>
    <%@ Register TagPrefix="CE" Namespace="CuteEditor" Assembly="CuteEditor" %>
    <script runat="server">


     
     Public Sub Page_Load(sender As object, e As System.EventArgs)

     
     End Sub
     
    sub putin
        Response.write("<CE:Editor id='Editor1' EnableFancyDropDownMenu='true' AutoConfigure='EnableAll' runat='server'          ImageGalleryPath='/uploads/157'   FlashGalleryPath='/uploads/157' Runat='server' />'></CE:Editor><br /><br />")
     end sub
    </script>
    <html>
        <head>
      <title>ASP and ASP.NET WYSIWYG Editor - Enable All Toolbars</title>
      <link rel="stylesheet" href="example.css" type="text/css" />
     </head>
        <body >
     <% siteid %>
            <form runat="server">
    <% putin %>
      </form>
     </body>
    </html>

    orcais.com
View Complete Thread