Embedded

Applies to

StaticHyperLink controls

Description

When you set the Embedded property to true for a StaticHyperLink control, the IFRAME element is used to embed the Web page that you defined in the control’s URL property. The Web page displays inline on the Web Forms page.

Usage


In scripts

The following code sets the Embedded property to “true”. You must surround the Embedded property in a conditional compilation code block for Web Forms applications:

#IF DEFINED PBDOTNET THEN
   static_hyperlink.Embedded = true 	  
#END IF