EditLive! 9 Documentation : Content Property (ASP.NET only)

This property is used to set/retrieve the content of a .net EditableSection control.

Syntax

ASP.NET - EditLiveJava control
prefix:EditLiveJava Content="strContent"
ASP.NET - EditableSection control
prefix:EditableSection Content="strContent"

Parameters

strContent

A string specifying the initial content of the EditLive! applet.

The default value is an empty string.

Examples

The following code would set the initial contents of EditLive! to be equal to Initial contents. The <P> and </P> tags will not be seen in the window as they will be parsed as HTML. However, these tags will be visible in the Code View.

ASP.NET EditableSection Control
<elj:EditableSection
   ...
   Content="<P>Initial contents</P>"
   ...
/>

This property can be databound to ASP.NET data sources.