Follow these simple instructions to get soEditor up and running on your web server:
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.
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" -->
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/"
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>
To test your installation, open Internet Explorer
and access the example applications at:
http://{www.yoursite.com}/siteobjects/soeditor/pro/examples/default.asp
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.
Online help documentation is also available at:
http://{www.yoursite.com}/siteobjects/soeditor/pro/docs/asp/index.html