Returns the read-only Microsoft FrontPage-based web container for the specified object.
expression.Web
expression Required. An expression that returns one of the above objects.
This example returns the title of a FrontPage-based web.
Private Sub GetWebTitle()
Dim myWeb As WebEx
Dim myWebName As String
Set myWeb = ActiveWeb
myWebName = myWeb.RootFolder.Web.Title
End Sub