Re: How do I display a value (text) in the editor on page load? I'm a newbie...please help!

  •  05-26-2009, 10:13 AM

    Re: How do I display a value (text) in the editor on page load? I'm a newbie...please help!

    1. <%@ Register TagPrefix="CE" Namespace="CuteEditor" Assembly="CuteEditor" %>    
    2.   
    3. <%@ Page Title="" Language="c#" AutoEventWireup="false" MasterPageFile="~/MasterPages/Admin.Master" CodeBehind="admin_edit_content.aspx.vb" Inherits="millelacssite.admin_edit_content" %>     
    4.   
    5. <asp:Content ID="Content1" ContentPlaceHolderID="head" runat="server">  
    6. </asp:Content>     
    7.   
    8. <asp:Content ID="Content2" ContentPlaceHolderID="ContentPlaceHolder1" runat="server">     
    9.      
    10.   
    11. <script runat="server">    
    12.        
    13.     Protected Overloads Overrides Sub OnInit(ByVal e As EventArgs)   
    14.         MyBase.OnInit(e)   
    15.        
    16.         Editor2.Text = "Some Text Here"  
    17.     End Sub   
    18.   
    19. </script>       
    20.   
    21.      
    22.   
    23. <div id="content">     
    24.   
    25.     <h1>Website Content</h1>     
    26.   
    27.     <p>You are editing >> (page name here)</p>           
    28.   
    29.      <form id="Form2" runat="server">               
    30.   
    31.         <%--display cute editor with less toolbar options--%>               
    32.   
    33.         <!--the editor will be displayed with the page content from the "content" table for the appropriate page,     
    34.   
    35.             page id will be grabbed using get method through page link on admin_website_content.aspx,     
    36.   
    37.             ex: admin_edit_content.aspx?pageid=1 is the link to edit the homepage-->     
    38.   
    39.                  
    40.   
    41.         <CE:Editor      
    42.             ConfigurationPath="~/CuteSoft_Client/CuteEditor/Configuration/AutoConfigure/simple.config"    
    43.             id="Editor2"    
    44.             runat="server">     
    45.         </CE:Editor>     
    46.   
    47.         <br />                  
    48.   
    49.         <input id="Submit1" type="submit" value="Submit" runat="server" />               
    50.   
    51.      </form>     
    52.   
    53. </div><!--end content-->       
    54.   
    55. </asp:Content>    

    asp.net Chat http://cutesoft.net/ASP.NET+Chat/default.aspx
    Web Messenger: http://cutesoft.net/Web-Messenger/default.aspx
    asp.net wysiwyg editor: http://cutesoft.net/ASP.NET+WYSIWYG+Editor/default.aspx
    asp wysiwyg html editor: http://cutesoft.net/ASP
    asp.net Image Gallery: http://cutesoft.net/ASP.NET+Image+Gallery/default.aspx
    Live Support: http://cutesoft.net/live-support/default.aspx

View Complete Thread