May 2010
Intermediate to advanced
1272 pages
61h 18m
English
FrameThe Frame control enables showing Html contents, including web pages. The most basic usage is assigning its Source property with an Uri, as in the following example:
<Frame Source="http://www.visual-basic.it" />
Figure 32.8 shows how the website appears in the Frame control.
Figure 32.8 Opening a website with a Frame control.

This control exposes a Navigate method that enables programmatically browsing html contents and/or web pages as in the following snippet:
Frame1.Navigate(New Uri("Http://www.visual-basic.it"))
You can also point to an html file on disk; just remember that each content name must be converted into Uri.
Read now
Unlock full access