CuteEditor for ASP 6.6 Class Library

Editor.HyperlinkTarget Property

Specifies where the linked document will be opened when the user follows a link.


Example Code

      <%
           Dim editor
           Set editor = New CuteEditor
           editor.ID = "Editor1"
           'Specify the url when the help button click.
           editor.HyperlinkTarget = "_blank"
           editor.Text = "Hello World"
           editor.Draw()
      %>


Members

Member Name Description
Default No action taken.
_blank The target URL will open in a new window.
_self The target URL will open in the same frame as it was clicked.
_parent The target URL will open in the parent frameset.
_top The target URL will open in the full body of the window.

See Also

Editor Class | CuteEditor Namespace