LoadHtml Method (WebControl)
- Last UpdatedAug 21, 2026
- 1 minute read
Loads given html. It is more like setting document.body.outerHTML instead of a real load. It doesn't show up in navigation history either. So it is treated much more like "modifying the current document" rather than loading a new document.
'Declaration
Public Sub LoadHtml( _
ByVal html As String, _
ByVal baseAddress As String _
)
public void LoadHtml(
string html,
string baseAddress
)
public:
void LoadHtml(
String^ html,
String^ baseAddress
)
Parameters
- html
- Html to load.
- baseAddress
- Base address. The baseUrl can be used to convert partial path into the full path. For example, the HTML may contain partial path such as 'img src="logo.gif"'. In that case, the browser engine would not be able to construct the full path of the image unless the baseUrl is provided.