Offline Property

This content is no longer actively maintained. It is provided as is, for anyone who may still be using these technologies, with no warranties or claims of accuracy with regard to the most recent product version or service release.

Returns a B oolean indicating whether Microsoft Internet Explorer is in offline mode. Read-only.

expression.Offline

expression   Required. An expression that returns a DataSourceControl object.

Example

This example changes the text of a label control to indicate the offline status of a data access page before the data access page is bound to its data source.

  Sub MSODSC_BeforeInitialBind(DSCEventInfo)

   If MSODSC.Offline = True then
      Label.innerText = "Offline"
   Else
      Label.innerText = "Online"
   End If

End Sub