Follow these simple instructions to get soEditor up and running on your web server:

 

 

  1. Extract the entire zip into the root of your web server or into the root of the web site that you wish to install soEditor in.
     

  2. Add the following line of code to the top of the page that you want to use soEditor in:

    <!-- #include file="/siteobjects/soeditor/
    pro/soeditor_pro.asp" -->
     

  3. Refer to the following to create and prepare an instance of soEditor for your asp page:

    Dim oEditor
    Set oEditor = New soEditor

    oEditor.Form = "Form1"
    oEditor.Field = "Field1"
    oEditor.ScriptPath = "/siteobjects/soeditor/
    pro/"
     

  4. To display the instance of soEditor you have declared and instantiated, call the object's Render method inside your form, example:

    <form name="Form1" method="post" action="actionpage.asp">
    <% oEditor.Render() %>
    </form>
     

  5. To test your installation, open Internet Explorer and access the example applications at:
    http://{www.yoursite.com}/siteobjects/soeditor/pro/examples/default.asp
     

  6. If you extract the package into an alternative directory, you must change the scriptpath variable in examples/locals.asp to point to the new location in order for the examples to work correctly.
     

  7. Online help documentation is also available at:
    http://{www.yoursite.com}/siteobjects/soeditor/pro/docs/asp/index.html