Toolbar Browser
3. Reference
Triggers
Controls
Variables
System Variables
Global Values
Functions
AutoFill()
Back()
Beep()
CheckLinks()
Checksum()
Click()
Command()
Customize()
DeleteOption()
Enable()
Execute()
ExportLinks()
Forward()
GetFolderIcon()
GetQuery()
GetSystemIcon()
Header()
Highlight()
HistoryMenu()
Home()
IfExactMatch()
IfMatch()
ImportValue()
ImportCaption()
ImportIntValue()
ImportXMLValue()
Length()
LoadMenu()
Menu()
OpenURL()
Options()
PageText()
PlaySound()
PopupManager()
Refresh()
Replace()
ReplaceAll()
Resize()
ResizeClient()
Redraw()
Save()
Search()
SearchBack()
SearchLast()
SearchNext()
SearchPage()
SetCaption()
SetClipboard()
SetFocus()
SetFontSize()
SetIcon()
SetOption()
SetParam()
SetText()
SetStatusText()
SetTooltip()
SetUserAgent()
SetValue()
Show()
Stop()
StripHTML()
ToolbarMenu()
TruncateOption()
UpdateToolbar()
Zoom()
Text Functions
 

Header() Function

Displays the HTTP header of a URL.

Syntax:

    Header(url)


Parameters:

    url - URL of a page to get and display a HTTP header for.


Remarks:

    Use %URL% as the parameter to retrieve the HTTP header of the current page.
    The url parameter can also contain variables.


Example:

    The foillowing cde creates a Header() toolber button.


      <xml id="toolbar">
      <toolbar caption="Header() Example">
      <control type="edit" id="%_QUERY%">
      <control type="toolbar">
      <button caption="Header" tooltip="Show HTTP Header" action="Header("%URL%")"></button>
      </control>
      </toolbar>
      </xml>