Re: Cute Editor and SQL

  •  01-15-2008, 10:08 AM

    Re: Cute Editor and SQL

    Hi there,
     
    Assuming you are using .NET, and are able to get your SQL data from the table to a variable, the editor has a text property that you can set. So using default settings and editor name, you would want to add this to your PageLoad sub in the ASP.NET page:
     
    sub PageLoad()
       Editor1.text = YourDataVariable
    end sub
View Complete Thread